Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.  
  5.  
  6.  
  7. <script>
  8.  
  9.  
  10. $(document).ready(function(e){
  11.  
  12.  
  13. $("#id1").change(function(e){
  14.  
  15. $("celula1").text = $("#id1").text;
  16.  
  17. });
  18.  
  19.  
  20.  
  21.  
  22.  
  23. $("#table1 td").each(function(e){
  24. $(this).text = "cevreau eu";
  25. });
  26.  
  27.  
  28. });
  29.  
  30.  
  31. </script>
  32.  
  33. </head>
  34.  
  35. <body>
  36.  
  37. <input type = "text" id = "id1" class = "x"/>
  38. <input type = "text" id = "id1" class = "x"/>
  39.  
  40.  
  41. <select id = "dropdown1">
  42. <option value="1">masina verde</option>
  43. <option value="2">masina rosie</option>
  44. </select>
  45.  
  46.  
  47. <table id="table1">
  48. <tr>
  49. <td id = "celula1"></td>
  50. </tr>
  51. <table>
  52.  
  53. </body>
  54.  
  55.  
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement