bloqhead
9/20/2013 - 8:02 PM

Simple jQuery pulldown script.

Simple jQuery pulldown script.

$('ul#menu-main-menu li').hover( function() {
	$('.sub-menu', this).show();
	if( $(this).find('.sub-menu').length > 0 ) {
		$(this).addClass('active');
	}
}, function(){
	$('.sub-menu', this).hide();
	$(this).removeClass('active');
});