Guest User

Untitled

a guest
Feb 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $(document).on('click', '.spoiler-trigger', function (e) {
  2. e.preventDefault();
  3. $(this).toggleClass('active');
  4. $(this).parent().find('.spoiler-block').first().slideToggle(300);
  5. });
Add Comment
Please, Sign In to add comment