Skip to main content

Bug Tracker

Side navigation

#158 closed enhancement (fixed)

Opened August 30, 2006 08:53AM UTC

Closed August 31, 2006 06:30AM UTC

Native XMLHttp in IE

Reported by: john Owned by:
Priority: minor Milestone:
Component: ajax Version:
Keywords: Cc:
Blocked by: Blocking:
Description
// If IE is used, create a wrapper for the XMLHttpRequest object if ( !XMLHttpRequest && ActiveXObject ) XMLHttpRequest = function(){ return new ActiveXObject( navigator.userAgent.indexOf("MSIE 5") >= 0 ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP" ); };

I assume that you didn't try that code, because it freaks out in IE (if memory serves me correctly - maybe it was Opera). I'll probably change it to this:

if ( jQuery.browser.msie && XMLHttpRequest == undefined )

Attachments (0)
Change History (1)

Changed August 31, 2006 06:30AM UTC by john comment:1

resolution: → fixed
status: newclosed

Fixed in SVN rev 246.