/ Published in: jQuery
Expand |
Embed | Plain Text
$('a').hover(function(){ var parent = $(this).parent(); $('.submenu', parent).show(); }, function(){ var parent = $(this).parent(); $('.submenu', parent).hide(); }); $('.submenu').hover(function(){$(this).show();}, function(){$(this).hide();});
You need to login to post a comment.
