Skip to content

Instantly share code, notes, and snippets.

@Korveld
Created May 22, 2015 12:03
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 Korveld/3af0284eb4b6d1aafd4c to your computer and use it in GitHub Desktop.
Save Korveld/3af0284eb4b6d1aafd4c to your computer and use it in GitHub Desktop.
Lightbox js file
var $overlay = $('.overlay');
var $lightbox = $('.lightbox');
$('#elementId').click(function(event) {
$overlay.fadeIn(300);
$lightbox.fadeIn(300);
event.preventDefault();
});
$overlay.click(function() {
$(this).fadeOut(300);
$lightbox.fadeOut(300);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment