When making an async request on a website, the response is parsed into a select field where the option gets selected once the DOM nodes are ready. This process works perfectly on all browsers except for Internet Explorer 6, which presents some strange behavior.
In IE, I monitored all events using my own scripts and noticed that a variable was being assigned as null. However, when I tried to alert the same variable, it turned out to be defined! Despite trying a sleep function to give more time for the page processing, it didn't resolve the issue. Can anyone provide assistance in finding a workaround for this peculiar bug?