Search code examples
internet-explorerwindows-mobileonscroll

JS Scroll Event - Windows Mobile IE


I am trying to detect a scroll event on Windows Mobile IE 6 However, Mobile IE 6 doesn't seem to support a scroll event of any type. Is there something I'm missing here? Here is some sample code:

$(window).scroll(function(){
      alert('test');
  });

Is there any kind of workaround? It seems like i'm going to have to do a timer to check for scrollTop value changes.

EDIT MSIE 6.0 Windows NT 5.1; Windows Phone 6.5


Solution

  • It doesn't appear possible. I did achieve a workaround using a javascript interval that checks for changes in the scrollTop variable.