I would like to ask about scroll listener. I want to add scroll listener on body but it seems doesnt work.
$('body').scroll(function(){
console.log('SCROLL BODY');
});
I create basic example on fiddle, can someone explain me why it doesn't to work? Sorry for nubies question...
Try with:
$(window).scroll(function(){
console.log('SCROLL BODY');
});
This should be supported by all browsers.