Guest User

Untitled

a guest
Jun 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. $("#nav-one li").click(
  4.  
  5. function(){ $("ul", this).fadeIn("fast"); }
  6.  
  7. );
  8.  
  9. if (document.all) {
  10.  
  11. $("#nav-one li").hoverClass ("sfHover");
  12.  
  13. }
  14.  
  15. });
  16.  
  17.  
  18.  
  19. $.fn.hoverClass = function(c) {
  20.  
  21. return this.each(function(){
  22.  
  23. $(this).click(
  24.  
  25. function() { $(this).addClass(c); }
  26.  
  27. );
  28.  
  29. }
  30. );
  31.  
  32. };
Add Comment
Please, Sign In to add comment