Created
July 17, 2013 04:32
-
-
Save Shelob9/6017713 to your computer and use it in GitHub Desktop.
jQuery function to collapse Foundation's Topbar when clicking on an item. I got this from looking at lines 174-176 of Foundation's topbar.js. Notes:
1) The .page_item selector is added by WordPress, not Foundation, you will need to change this if not using WordPress.
2) This can makes problems for multi-level menus.
3) To apply this to only one …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.page_item').click(function() { | |
$('.top-bar, [data-topbar]').css('height', '').removeClass('expanded'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment