From 15a30ba90cb4ff46ea17e775dd20f38f3c07e112 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Tue, 21 Nov 2006 09:14:29 +0000 Subject: [PATCH] Better fix for #407 issue --- src/ajax/ajax.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index b8ccdd6..efd7ae2 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -123,8 +123,14 @@ jQuery.fn.extend({ if ( this.src ) // for some weird reason, it doesn't work if the callback is ommited jQuery.getScript( this.src ); - else - eval.call( window, this.text || this.textContent || this.innerHTML || "" ); + else { + // TODO extract into $.eval + var data = this.text || this.textContent || this.innerHTML || ""; + if (window.execScript) + window.execScript( data ); + else + window.setTimeout( data, 0 ); + } }).end(); } @@ -682,6 +688,7 @@ jQuery.extend({ data = type == "xml" || data ? r.responseXML : r.responseText; // If the type is "script", eval it´in global context + // TODO extract as $.eval if ( type == "script" ) { if (window.execScript) window.execScript( data ); -- 1.7.10.4