Skip to content

Instantly share code, notes, and snippets.

@stirlinghewitt
Created February 26, 2016 21:23
Show Gist options
  • Save stirlinghewitt/8d87a8afe07d10813521 to your computer and use it in GitHub Desktop.
Save stirlinghewitt/8d87a8afe07d10813521 to your computer and use it in GitHub Desktop.
Fye Nav Dropdown js
$(document).ready(function(){
$( 'li.menuitem' ).hover( function(e){ var sm = $( this ).find( '.submenu' ); sm.show(); if( sm.offset().left + sm.width() > $( window ).width() ) { sm.css( 'right','0px' ); } },function(e){ $( this ).find( '.submenu' ).hide(); } );
});
//new code
$(function() {
try {
$( 'li.menuitem' ).hover( function(e){ var sm = $( this ).find( '.submenu' ); sm.show(); if( sm.offset().left + sm.width() > $( window ).width() ) { sm.css( 'right','0px' ); } },function(e){ $( this ).find( '.submenu' ).hide(); } );
}
catch (e) {}
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment