I am facing following strange issue:
Functionality:
When I open my website page which has many images and have javascript/jquery used for clie
There is also a workaround:
var iOS8 = navigator.userAgent.match(/(iPad|iPhone|iPod).*OS 8_\d/i);
if( iOS8 ){
setTimeout(function(){
$(window).trigger('load');
}, 3500);
}
This will trigger the load, and 'trick' Safari on iOS8 to think that the $(window)
object was loaded, so the code inside the
$(window).on('load', function());
will work.
Hope this helps to anyone who is searching for this :)