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