Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Created July 17, 2013 04:32
Show Gist options
  • Save Shelob9/6017713 to your computer and use it in GitHub Desktop.
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 …
$('.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