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

Untitled

By: a guest on Jun 27th, 2011  |  syntax: HTML  |  size: 0.61 KB  |  hits: 73  |  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 XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5.     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
  6.    
  7.     <script type="text/javascript">
  8.  
  9.         $(document).ready(function() {
  10.             $('#toggle').click(function() {
  11.                 $('#test').toggle(400);
  12.             });
  13.         });
  14.    
  15.     </script>
  16. </head>
  17. <body>
  18.     <p id="test">Testing 1, 2, 3</p>
  19.     <div id="toggle">show/hide</div>
  20. </body>
  21. </html>