Created
October 11, 2017 15:16
-
-
Save ozknozsrt/5e0f50067b5e0024ad4856f924ac89d8 to your computer and use it in GitHub Desktop.
Use a name space with .on/.off
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
$(window).on('scroll.custom', function () { | |
var height = $(window).scrollTop(); | |
if (height > 300) { | |
$('.counter-1, .counter-2, .counter-3, .counter-4').counter(); | |
$(window).off('scroll.custom') | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment