Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save krutz27/6825911 to your computer and use it in GitHub Desktop.
Save krutz27/6825911 to your computer and use it in GitHub Desktop.
$('<div id="overlay"></div>')
.css({
position : 'fixed',
top : 0,
left : 0,
right : 0,
bottom : 0,
opacity : 0.6,
background : 'black',
display : 'none'
})
.appendTo('body')
.fadeIn('normal')
.click(function () {
$(this).fadeOut('normal', function () {
$(this).remove();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment