views:

89

answers:

0

In my application, upon a certain event, an ajax call is triggered. The response contains a autocomplete select box (the data for which is statically included), therefore the response contains the following two scripts:

<script type="text/javascript" src="<%=PropertyConstants.STATIC_LOCATION%>scripts/stp/jquery.bgiframe.min.js"></script>
<script type="text/javascript" src="<%=PropertyConstants.STATIC_LOCATION%>scripts/stp/jquery.autocomplete.js"></script>

These two files take particularly long time to eval in IE6. My application runs on two separate servers (using websphere), one web-server (which contains the java-scripts and other static contents) and the other the application server.

So, for like 10-15 mins, the IE6 browser wouldnt respond, and only after that the result shows up (that is, the modal containing the autocomplete box would show up).

Can you help me understand the cause and get this defect fixed?