Issue: Autocomplete is sometimes completely freezing up in IE when it's opening up the result box. This is only happening inside of a webforms partial page that is loaded up into a modal style div.
<input type="text" name="orderEmailAddress" id="orderEmailAddress" style="width:200px;" />
$(document).ready(function() {
$("#orderEmailAddress").autocomplete({
source: "./Components/OrderEmails/Search.aspx?o=" + $("#OrderId").val(),
minLength: 2
});
});
This is nothing particularly complicated. And when tested on a simple aspx page it's working.
This application is legacy and is still using the Asp.Net AjaxControlToolkit which could potentially be a source of the complication. There are update panels, other ASP Ajax controls on the surrounding page.
Any suggestions?