Skip to content

Instantly share code, notes, and snippets.

@keks55
Last active June 19, 2017 13:01
Show Gist options
  • Save keks55/df4ca3cc629c2ea2d8019728bd573357 to your computer and use it in GitHub Desktop.
Save keks55/df4ca3cc629c2ea2d8019728bd573357 to your computer and use it in GitHub Desktop.
$(".popup-click").click(function(){
//$(".popup").slideToggle("fast");
//$('.mask').toggleClass('open');
$(".popup,.mask").addClass("open");
$("a.close").click(function(){
$(".popup,.mask").removeClass("open");
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment