From 40b55adf5c22542985c3f7fc2717df9604a3d973 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Wed, 1 Nov 2006 21:59:56 +0000 Subject: [PATCH] Another $ bites the dust. Should be all of them now. --- src/ajax/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 13ad01d4..a52879aa 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -843,7 +843,7 @@ jQuery.extend({ if ( type == "json" ) eval( "data = " + data ); // evaluate scripts within html - if ( type == "html" ) $("
").html(data).evalScripts(); + if ( type == "html" ) jQuery("
").html(data).evalScripts(); return data; },