Skip to content

Instantly share code, notes, and snippets.

@jimfloss
Created June 11, 2018 17:03
Show Gist options
  • Save jimfloss/caeffda209c7523e65a6afb7f9b40393 to your computer and use it in GitHub Desktop.
Save jimfloss/caeffda209c7523e65a6afb7f9b40393 to your computer and use it in GitHub Desktop.
Track Clicks
//On Click
var clicks = $(this).data('clicks');
if (clicks) {
$('.opprotunity .content-bottom').slideUp(800);
} else {
$('.opprotunity .content-bottom').slideDown(800);
}
$(this).data("clicks", !clicks);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment