The scenario is this. A web page contains:
- some DIVs whose visibility can be toggled with a javascript (fired from an hyperlink)
- a Submit button, whose response takes about 5 seconds
The hyperlink code is
<a href="javascript:void null;" onclick="MyFunction()">foo</a>
The User:
- Presses Submit.
- While he is waiting for the response, he clicks on the hyperlink, and fires the javascript that toggles the DIVs visibility (no other request is performed).
- In Internet Exporer 6, the browser stops waiting for the first Request.
The problem does not happen in other browsers, even if the user plays with the DIVs, the first request is correctly handled, and we navigate to the next page.
Does anyone know what might be causing this? Is it a known IE6 issue?