Skip to content

Instantly share code, notes, and snippets.

@IgorGavrilenko
Created September 23, 2016 20:52
Show Gist options
  • Select an option

  • Save IgorGavrilenko/a2b7a988d4997567e6d82b2edc119262 to your computer and use it in GitHub Desktop.

Select an option

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