Advertisement
Guest User

Untitled

a guest
May 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.     <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
  4.     <script>
  5.     $(document).ready(function() {
  6.         $("#aaa").click(function() {
  7.             $("#bbb").html("your text");
  8.         });
  9.     });
  10.     </script>
  11. </head>
  12. <body>
  13.     <table>
  14.         <tr>
  15.             <td><input type="button" value="btn" id="aaa"></td>
  16.             <td id="bbb">some text</td>
  17.         </tr>
  18.     </table>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement