/ Published in: jQuery
jQuery to make Joomla-format menu dropdowns appear on hover. Change "#mainnav" to menu container selector.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('#mainnav .parent').hover(function(){ $('> ul', this).stop().removeAttr('style').show(200); },function(){ $('> ul', this).stop().hide(200); });