Skip to content

Instantly share code, notes, and snippets.

@IgorGavrilenko
Created September 23, 2016 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IgorGavrilenko/a2b7a988d4997567e6d82b2edc119262 to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/a2b7a988d4997567e6d82b2edc119262 to your computer and use it in GitHub Desktop.
popap video
(function() {
$('.popap-video').hide('fast')
$('.trigger').click(function(event) {
event.stopPropagation();
$('.popap-video').not($(this).next()).fadeOut('fast');
$(this).next().fadeToggle();
})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment