Created
June 11, 2018 17:03
-
-
Save jimfloss/caeffda209c7523e65a6afb7f9b40393 to your computer and use it in GitHub Desktop.
Track Clicks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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