Return to Snippet

Revision: 35703
at November 12, 2010 03:55 by cviolette


Initial Code
$('#mainnav .parent').hover(function(){
	$('> ul', this).stop().removeAttr('style').show(200);
},function(){
	$('> ul', this).stop().hide(200);
});

Initial URL


Initial Description
jQuery to make Joomla-format menu dropdowns appear on hover. Change "#mainnav" to menu container selector.

Initial Title
Joomla Menu Dropdowns

Initial Tags
dropdown, jquery, joomla

Initial Language
jQuery