Last active
June 23, 2018 04:47
-
-
Save qunabu/d831f7261513219aa400fa3fef7ed379 to your computer and use it in GitHub Desktop.
fancybox back button
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
$(window).on('hashchange', function() { | |
var i = parseInt(window.location.hash.substr(1)); | |
if (isFinite(i) && $.fancybox.isOpen) { $.fancybox.jumpto(i) } | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment