Skip to content

Instantly share code, notes, and snippets.

@sudipto-me
Created March 16, 2019 20:05
Show Gist options
  • Save sudipto-me/57e2a081ebeb3844c0ea54fe9a8461de to your computer and use it in GitHub Desktop.
Save sudipto-me/57e2a081ebeb3844c0ea54fe9a8461de to your computer and use it in GitHub Desktop.
Pop up Close
$('body').on('click', '#myModal', function (e) {
if ($(e.target).attr('class') == 'practice_modal active') {
console.log('Class found');
$('#myModal').toggleClass('active');
} else {
console.log('Class not found');
}
console.log($(e.target).attr('class'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment