Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 11th, 2012  |  syntax: None  |  size: 0.70 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2.    "http://www.w3.org/TR/html4/loose.dtd">
  3.  
  4. <html lang="en">
  5. <head>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7.         <title>test</title>
  8.         <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
  9.         <script type="text/javascript">
  10.           $(document).ready(function(){
  11.             $("a").click(function(e){
  12.               e.preventDefault();
  13.               $("#foo").load(this.href);             
  14.             });
  15.           });
  16.         </script>
  17. </head>
  18. <body>
  19.  
  20.   <div id="foo" style="background-color: red; width: 10em; height: 8em;"></div>
  21.   <br />
  22.   <a href="test.txt">load</a>
  23.   <a href="lol.txt">load another</a>
  24.  
  25. </body>
  26. </html>