From b52b19ac4a87f5c824b08be53ffbacc4b520711b Mon Sep 17 00:00:00 2001 From: Gilles van den Hoven Date: Sat, 3 Jun 2006 13:49:25 +0000 Subject: [PATCH 1/1] $.eval bug ==> added ==> || "" --- ajax/ajax.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ajax/ajax.js b/ajax/ajax.js index f5eab6c..ea189bc 100644 --- a/ajax/ajax.js +++ b/ajax/ajax.js @@ -124,7 +124,7 @@ $.fn.load = function(a,o,f) { h = h.responseText; self.html(h).find("script").each(function(){ try { - $.eval( this.text || this.textContent || this.innerHTML ); + $.eval( this.text || this.textContent || this.innerHTML || ""); } catch(e){} }); if(f){f(h);} @@ -215,7 +215,7 @@ $.fn.update = function(sURL, sMethod, aValues, fCallback) { // Evaluate the scripts AFTER this (so you can allready modify the new HTML!) el.html(sResult).find("script").each(function(){ - try { $.eval( this.text || this.textContent || this.innerHTML ); } catch(e) { } + try { $.eval( this.text || this.textContent || this.innerHTML || "" ); } catch(e) { } }); // And call the callback handler :) -- 1.7.10.4