Advertisement
piffy

jQuery_esempio

Sep 14th, 2014 (edited)
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.03 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="it">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Style demo</title>
  6.  
  7.   <script src="jquery-3.7.1.min.js"></script>
  8.     <style>
  9.   body,td {
  10.     font-size: 10pt;
  11.   }
  12.   table {
  13.     background-color: white;
  14.     border: 1px blue solid;
  15.   }
  16.   tr {
  17.     padding: 2px;
  18.   }
  19.   .diversa {
  20.     background-color: lightblue;
  21.     color: darkblue;
  22.   }
  23. </style>
  24. </head>
  25. <body>
  26. <script type="text/javascript">
  27.   $(document).ready(function(){
  28.     $("#col0").css("width","100px");
  29.     $("table tr:odd").addClass("diversa");
  30.   });
  31.  
  32. </script>
  33. <table>
  34.   <colgroup>
  35.     <col id="col0">
  36.     <col id="col1">
  37.     <col id="col2">
  38.   </colgroup>
  39.   <tr>
  40.     <th>Data</th>
  41.     <th>Buoni</th>
  42.     <th>Cattivi</th>
  43.   </tr>
  44.   <tr>
  45.     <td>Luned&igrave;</td>
  46.     <td>Giovanni</td>
  47.     <td>Achille</td>
  48.   </tr>
  49.   <tr>
  50.     <td>Mercoled&igrave;</td>
  51.     <td>Marcello</td>
  52.     <td>Antonella</td>
  53.   </tr>
  54.   <tr>
  55.     <td>Gioved&igrave;</td>
  56.     <td>Ulisse</td>
  57.     <td>Elena</td>
  58.   </tr>
  59. </table>
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement