Skip to content

Instantly share code, notes, and snippets.

@kolyadin
Created September 12, 2014 11:54
Show Gist options
  • Save kolyadin/09e9c1524c4e7b8532fa to your computer and use it in GitHub Desktop.
Save kolyadin/09e9c1524c4e7b8532fa to your computer and use it in GitHub Desktop.
$( '.header__subscribe' ).click(function(){
if (!$(this).hasClass('authorized')){
$( '.popup__auth' ).show();
$( '.popups__wrapper' ).show();
$('.btn_reg').click(function(){
$( '.popup__auth' ).hide();
$( '.popup__registration' ).show();
})
$( '.popup__checkbox' ).click(function(){
$( this ).toggleClass('active');
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment