I have an ASP.Net webpage that currently works on iOS4 but not on iOS5.
On the parent webpage, I have a button that opens a child window. And I update setTimeout in the parent window right after the open window is called.
I noticed on iPhone iOS5 that when it opens a child window, the setTimeout function on the parent page is not called until I return to the parent window and then back to the child window to see the update.
Here is a snippet of my code on the parent page and where I think the problem is
WindowManager.OpenWindow('...') t = setTimeout(function() { handles[0].testfx(); }, 1000);
this works on iOS4 but not on iOS5.
Any ideas?
source share