$(document).scroll(function(e){
console.log(e.target);
});
$(document).on("scroll", "*", function(e){
console.log(e.target);
});
$("*").scroll(...);
Bubbles No / Yes
When dispatched on the Document element, this event type MUST bubble to the Window object.