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

Untitled

By: a guest on May 27th, 2012  |  syntax: None  |  size: 0.51 KB  |  hits: 14  |  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. multiple class with JQuery addClass
  2. .title1{}
  3. .title2{}
  4. .title3{} ect
  5.        
  6. $("#menu'.$id.'").mouseover(function(){
  7.   $(this).addClass("hat'.$id.'");
  8.       $("#h'.$id.'").addClass("viewhat");
  9.       $("#menu'.$id.'").bind("mouseleave",function(){
  10.   $(this).removeClass("hat'.$id.'");
  11.       $("#h'.$id.'").removeClass("viewhat");
  12.        });
  13. });
  14.  
  15.  
  16. $("#menu'.$id.'").live("click",function(){
  17.  
  18.       $("#titre").addClass("titre'.$id.'");
  19.       $("#nav_foot_1").addClass("nav_foot_1_'.$id.'");
  20.  
  21.        });
  22.  
  23.     </script>