Skip to content

Instantly share code, notes, and snippets.

@mindcube
Last active March 1, 2018 12:13
Show Gist options
  • Save mindcube/5533820 to your computer and use it in GitHub Desktop.
Save mindcube/5533820 to your computer and use it in GitHub Desktop.
JS: Function that automatically pops up a fancybox window by using hash link.
// Function to automatically pop up lightbox window.
if (window.location.hash) {
var hash = window.location.hash;
if (hash == '#registration_form') {
$('.fancybox').fancybox().trigger('click');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment