I've been implementing Dan Switzer's autocomplete plugin on my site and I have everything sort of working (thanks Dan!) but ran into an issue with authentication. My site uses Windows Integrated Authentication (on IIS) and every Ajax request kicks off a login prompt...
Dan found this: http://anotherdan.com/2006/6/8/ajax-and-integrated-windows-authenticatio n I replaced my compressed jQuery script with the source and commented out that line: // transport.setRequestHeader("connection", "close"); Which seems to have solved this issue. But I want to make sure this doesn't screw up anything else?? Also - how can I re-compress my source with this modification included? Thanks, Jim