X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fajax%2Fajax.js;h=4fb63c0fd2c1990134278052e9fd1df0366f9e78;hb=6f0c9a5fd751d590be07e890758b8229e630413d;hp=9c9a5df3646d7f53e8d8430dc522d39144ae91c1;hpb=bfe5f891068af9f86d7be288ad0da7b442427d9c;p=jquery.git diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 9c9a5df..4fb63c0 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -408,9 +408,6 @@ jQuery.extend({ }); }, - // timeout (ms) - //timeout: 0, - /** * Set the timeout in milliseconds of all AJAX requests to a specific amount of time. * This will make all future AJAX requests timeout after a specified amount @@ -637,10 +634,6 @@ jQuery.extend({ // Set header so the called script knows that it's an XMLHttpRequest xml.setRequestHeader("X-Requested-With", "XMLHttpRequest"); - // Make sure the browser sends the right content length - if ( xml.overrideMimeType ) - xml.setRequestHeader("Connection", "close"); - // Allow custom headers/mimetypes if( s.beforeSend ) s.beforeSend(xml); @@ -792,7 +785,7 @@ jQuery.extend({ // Get the JavaScript object, if JSON is used. if ( type == "json" ) - eval( "data = " + data ); + data = eval("(" + data + ")"); // evaluate scripts within html if ( type == "html" )