X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=src%2Fajax.js;h=690bcb53bf175b6b651a764802b34ab6362de934;hb=e57b73a0ac6f8fd0cdbbe7d43f1c7e198f475337;hp=ff293da6acff9280097a5fcaba2c9e35e87d5032;hpb=a4df6945b8f668d6fe4b1c77610987f738afa01e;p=jquery.git diff --git a/src/ajax.js b/src/ajax.js index ff293da..690bcb5 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -463,10 +463,11 @@ jQuery.extend({ try { var oldAbort = xhr.abort; xhr.abort = function() { - // xhr.abort in IE7 is not a native JS function - // and does not have a call property - if ( xhr && oldAbort.call ) { - oldAbort.call( xhr ); + if ( xhr ) { + // oldAbort has no call property in IE7 so + // just do it this way, which works in all + // browsers + Function.prototype.call.call( oldAbort, xhr ); } onreadystatechange( "abort" );