Skip to content

Instantly share code, notes, and snippets.

@jpcontrerasv
Created January 29, 2015 15:27
Show Gist options
  • Save jpcontrerasv/20354d8751d5e7bd1d89 to your computer and use it in GitHub Desktop.
Save jpcontrerasv/20354d8751d5e7bd1d89 to your computer and use it in GitHub Desktop.
Muestra los pixeles scrolleados
var $w = $(window), $display = $(".pixeles");
$w.on("scroll", function(e){
$display.text($w.scrollTop())
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment