Skip to content

Instantly share code, notes, and snippets.

@Michael0x2a
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save Michael0x2a/d06d207d993fe8b9b8bc to your computer and use it in GitHub Desktop.

Select an option

Save Michael0x2a/d06d207d993fe8b9b8bc to your computer and use it in GitHub Desktop.
function manuallyOpen() {
var anchor = window.location.hash.substring(1);
if (anchor.length > 0) {
var element = document.getElementById(anchor);
element.click();
}
}
$(document).foundation();
$(document).ready(function() {
manuallyOpen();
$(window).bind('hashchange', manuallyOpen);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment