Advertisement
Aha2Y

Untitled

May 12th, 2012
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.38 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="jquery.js"></script>
  4. <script type="text/javascript">
  5. $(document).ready(function(){
  6.   $("button")click(function(){
  7.     $(".button-1").append(" <b>W3Schools</b>.");
  8.   });
  9. });
  10. </script>
  11. </head>
  12.  
  13. <body>
  14. <input class="input" type="text name="input">
  15. <input class="button-1" type="button" value="1" name="button-1">
  16.  
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement