Advertisement
Guest User

Untitled

a guest
Aug 15th, 2010
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <title>Untitled Document</title>
  6. <script src="jquery.js" type="text/javascript"></script>
  7. <script type="text/javascript">
  8. jQuery(document).ready(function(){
  9. jQuery("#nav a").click(function(){
  10. jQuery("#nav a").removeClass("active");
  11. jQuery(this).addClass("active");
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <div id="nav">
  18. <a href="#">one</a>
  19. <a href="#">two</a>
  20. <a href="#">three</a>
  21. </div>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement