We have a textbox coupled with jQuery UI Autocomplete v1.8.14
It basically works great and without bugs except a certain scenario in IE7 standalone. Let's assume that a user is inputting a letter and the first AJAX request goes out for the autocompleter results. The response isn't yet back but the user inputs another letter. At this point the first request is being aborted be default and a second one is started to retrieve the new results for the new search string. This makes sense as is spares bandwidth and lost execution time but unfortunately it fails on IE7.
The following image is showing what happens using Firebug in Firefox. Essentially all browsers work correctly except IE7 (even IE6 and IE8).

Did anybody ever see something like this? Does eventually somebody know if it's possible to force the autocompleter to finish the started requests instead of aborting them? Any other ideas?
Thanks a lot, any help is highly appreciated!