Last active
August 29, 2015 14:16
-
-
Save Michael0x2a/d06d207d993fe8b9b8bc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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