I'm using the chrome mobile browser on galaxy s4, android 4.2.2 and for some reason every time I scroll the page down, it fires a resize event verified by the scaling of images from a jquery.cycle2 slideshow.
Any idea why this might be happening?
That sounds strange, but I have seen it in other browsers. You can work around this like so.
var width = $(window).width(), height = $(window).height();
then in your resize event handler you can do.
if($(window).width() != width || $(window).height() != height){
//Do something
}
I don't know the scope of your functions and all that, but you should get the gist from this.