Skip to content

Instantly share code, notes, and snippets.

@iurevych
Created November 19, 2014 10:04
Show Gist options
  • Save iurevych/537201a0a2488102d8b5 to your computer and use it in GitHub Desktop.
Save iurevych/537201a0a2488102d8b5 to your computer and use it in GitHub Desktop.
// Pop-up and its toggle
$('[data-toggle]').click(function(e) {
var element = $(this).attr('data-toggle');
var $popup = $('[data-popup="' + element + '"]');
$popup.hasClass('is-shown') ? $popup.hide().removeClass('is-shown') : $popup.show().addClass('is-shown');
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment