From 50cdc997b81dcc1994a5f04e44dabf01fd6198de Mon Sep 17 00:00:00 2001 From: Gilles van den Hoven Date: Fri, 9 Jun 2006 14:49:09 +0000 Subject: [PATCH] removed $.fn.changer by Marc's request and changed back the responseText in $.xml --- ajax/ajax.js | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/ajax/ajax.js b/ajax/ajax.js index 98569e17..f48f74c0 100644 --- a/ajax/ajax.js +++ b/ajax/ajax.js @@ -120,18 +120,15 @@ $.fn.load = function(a,o,f) { t = "POST"; } var self = this; - $.xml(t,a,o,function(h){ - // Get HTTP data - h = $.httpData(h); - + $.xml(t,a,o,function(res){ // Assign it and execute all scripts - self.html(h).find("script").each(function(){ + self.html(res.responseText).find("script").each(function(){ try { $.execute( this.text || this.textContent || this.innerHTML || ""); } catch(e){} }); // Callback function if (f && f.constructor == Function) - f(h); + f(res.responseText); }); return this; }; @@ -324,17 +321,3 @@ $.fn.putForm = function(target, pre_cb, post_cb, url, mth) { return this; } - -// ------------------------------------------------------ - -$.fn.changer = function(form, target, pre_cb, post_cb) { - $(form).submit(function(e) { - e.preventDefault(); - return false; - }); - this.change(function(e) { - e.preventDefault(); - $(form).getForm().putForm(target, pre_cb, post_cb); - return this; - }); -} \ No newline at end of file