Skip to content

Commit

Permalink
Added in support for content-type sniffing for scripts. Fixes #5718.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Jan 6, 2010
1 parent 787f271 commit 6861b5d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/ajax.js
Expand Up @@ -555,9 +555,8 @@ jQuery.extend({
},

httpData: function( xhr, type, s ) {
var ct = xhr.getResponseHeader("content-type"),
xml = type === "xml" || !type && ct && ct.indexOf("xml") >= 0,
json = type === "json" || !type && ct && ct.indexOf("json") >= 0,
var ct = xhr.getResponseHeader("content-type") || "",
xml = type === "xml" || !type && ct.indexOf("xml") >= 0,
data = xml ? xhr.responseXML : xhr.responseText;

if ( xml && data.documentElement.nodeName === "parsererror" ) {
Expand All @@ -572,14 +571,13 @@ jQuery.extend({

// The filter can actually parse the response
if ( typeof data === "string" ) {

// If the type is "script", eval it in global context
if ( type === "script" ) {
if ( type === "script" || !type && ct.indexOf("javascript") >= 0 ) {
jQuery.globalEval( data );
}

// Get the JavaScript object, if JSON is used.
if ( json ) {
if ( type === "json" || !type && ct.indexOf("json") >= 0 ) {
// Try to use the native JSON parser first
try {
data = JSON.parse( data );
Expand Down
7 changes: 7 additions & 0 deletions test/data/script.php
@@ -0,0 +1,7 @@
<?php
error_reporting(0);
if ( $_REQUEST['header'] ) {
header("Content-type: text/javascript");
}
?>
ok( true, "Script executed correctly." );
14 changes: 14 additions & 0 deletions test/unit/ajax.js
Expand Up @@ -797,6 +797,20 @@ test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
});
});

test("jQuery.ajax() - script by content-type", function() {
expect(1);

stop();

jQuery.ajax({
url: "data/script.php",
data: { header: "script" },
success: function() {
start();
}
});
});

test("jQuery.ajax() - json by content-type", function() {
expect(5);

Expand Down

0 comments on commit 6861b5d

Please sign in to comment.