Skip to content

Instantly share code, notes, and snippets.

@ozknozsrt
Created October 11, 2017 15:16
Show Gist options
  • Save ozknozsrt/5e0f50067b5e0024ad4856f924ac89d8 to your computer and use it in GitHub Desktop.
Save ozknozsrt/5e0f50067b5e0024ad4856f924ac89d8 to your computer and use it in GitHub Desktop.
Use a name space with .on/.off
$(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