Advertisement
ranveer5289

test1.html

Jun 12th, 2011
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <script type="text/javascript" src="jquery.js"></script>
  5. <script type="text/javascript">
  6.  
  7.  
  8.  
  9.  
  10. $(document).ready(function(){
  11.  
  12. $('[href="#"]').click(function() {
  13. $('#' + $(this).data('id')).load($(this).data('url'));
  14. });
  15.  
  16.  
  17. });
  18.  
  19.  
  20. </script>
  21. </head>
  22.  
  23. <body>
  24. <form>
  25. <input type = "text" name = "username">
  26. <input type = "text" name = "passsword">
  27. </form>
  28.  
  29. <div id = "content">
  30.  
  31. <p> it will be replaced </p>
  32. </div>
  33. <a href="#" data-url="hello.txt" data-id="content">click here</a>
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement