Guest User

Untitled

a guest
May 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $(document).ready(
  2. function() {
  3. $(".menu-path-node-3>ul").bind("mouseover", function() {
  4. $('.menu-path-node-3>a').addClass('active');
  5. });
  6.  
  7. $(".menu-path-node-3>ul").bind("mouseout", function() {
  8. $('.menu-path-node-3>a').addClass('');
  9. });
  10. }
  11. );
Add Comment
Please, Sign In to add comment