Javascript: onScroll event (using Prototype) doesn't work on IE?
- by Chetane
I am trying to trigger the onScroll event this way using prototype:
Event.observe(document, 'scroll', function(){
alert('boo');
});
It works perfectly on firefox, but nothing happens on IE. Does anyone know why? and if there is another way to do so?
Thanks