Guest User

Untitled

a guest
Oct 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery.noConflict();
  2.        
  3.         jQuery(document).ready( function() {
  4.             jQuery("div#navigation_l1 ul li#products").mouseover( function() {
  5.                 jQuery("div#navigation_l2 ul").fadeIn(200, function() {
  6.                     jQuery(this).mouseover( function() {
  7.                        
  8.                     });
  9.                 });
  10.             });
  11.            
  12.             jQuery("div#navigation_l1 ul li#products").mouseleave( function() {
  13.                 jQuery("div#navigation_l2 ul").fadeOut(200);
  14.             });
  15.         });
Add Comment
Please, Sign In to add comment