Skip to content

Instantly share code, notes, and snippets.

View adifranco's full-sized avatar

Antonio DiFranco adifranco

View GitHub Profile
@adifranco
adifranco / mega-menu.js
Created March 28, 2012 16:39
UFL-MegaMenu ie7 column fix
$(document).ready(function() {
$("html.ie7 #primary-nav .sub .children > li:nth-child(4n)").after('<div class="clear"></div>');
// Hoverintent for Default Drop Down Navigation
function megaHoverOver(){
$(this).find(".sub").stop().fadeTo('fast', 1).show();
$(this).find(".sub .children > li:nth-child(4n+1)").css({'clear' : 'both'});
};