Skip to content

Instantly share code, notes, and snippets.

@qunabu
Last active June 23, 2018 04:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qunabu/d831f7261513219aa400fa3fef7ed379 to your computer and use it in GitHub Desktop.
Save qunabu/d831f7261513219aa400fa3fef7ed379 to your computer and use it in GitHub Desktop.
fancybox back button
$(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