/ Published in: jQuery
jQuery to make Joomla-format menu dropdowns appear on hover. Change "#mainnav" to menu container selector.
Expand |
Embed | Plain Text
$('#mainnav .parent').hover(function(){ $('> ul', this).stop().removeAttr('style').show(200); },function(){ $('> ul', this).stop().hide(200); });
You need to login to post a comment.
