views:

40

answers:

1

I cannot seem to find anything about an async request locking up IE8 but it is happening to me.

The browser will not allow navigation away from the current page until the request completes.

Example: if I open page the script below does a request to place icons on a page based on additional data not available while building the page. While this request is made, navigation is locked.

Any help would be appreciated. Thank You!

Script pasted here!

A: 

try calling your script from setTimeout. This can solve a range of locking issues by moving execution to a 'pseudo' thread instead of holding the global loop.

SpliFF
tried that, did not help
Artistan