Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@lincoln-chawora
Created September 2, 2019 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lincoln-chawora/4024f83b5e47241e00efbed9fa55e97e to your computer and use it in GitHub Desktop.
Save lincoln-chawora/4024f83b5e47241e00efbed9fa55e97e to your computer and use it in GitHub Desktop.
How to make changes on the window resize using the jquery-smartresize library
$(window).on('debouncedresize', function() {
var win = $(this);
if (win.width() > 768) {
$footerMenuContent.find('li:hidden').show();
} else {
$footerMenuContent.find('> .menu > li:not(.first)').hide();
}
});
@lincoln-chawora
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment