Jump to content

iOS load event


[dx]

Recommended Posts

Hi,

 

I need onload event for iPad/iPhone/iPod.

 

Tried:

$(window).load();<body onload="func()">window.onload = function() { }

Even tried:

 

var checkLoad = function() {  if (document.readyState == 'complete') {    //loaded  } else {  setTimeout(function() {    checkLoad();  }, 11);}checkLoad();
Nothing works, but only last solution sometimes retuns "complete" and sometimes "interactive".
Regards
Edited by Haris S
Link to comment
Share on other sites

It sounds like the normal load events work fine on iOS Safari, maybe you have an error in your code or it isn't doing what you expect. There's a way you can enable developer mode on mobile Safari to get error messages and things like that.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...