aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-10-06 17:15:33 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-10-06 17:15:33 +0000
commit7b2c84ddbe004ed4ab2ee3982af40b7275d7dfde (patch)
treedd7312609a664b545f2690e422ccf995a217de78 /src/ajax
parente218628dda347f5aa9241046780f3345713d7a35 (diff)
downloadjquery-7b2c84ddbe004ed4ab2ee3982af40b7275d7dfde.tar.gz
jquery-7b2c84ddbe004ed4ab2ee3982af40b7275d7dfde.zip
Removed (hopefully) all references to $ within the jQuery code itself
Diffstat (limited to 'src/ajax')
-rw-r--r--src/ajax/ajax.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index 2c63605d7..5aeb9439a 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -87,9 +87,9 @@ jQuery.fn.extend({
self.html(res.responseText).each( callback, [res.responseText, status] );
// Execute all the scripts inside of the newly-injected HTML
- $("script", self).each(function(){
+ jQuery("script", self).each(function(){
if ( this.src )
- $.getScript( this.src );
+ jQuery.getScript( this.src );
else
eval.call( window, this.text || this.textContent || this.innerHTML || "" );
});
@@ -124,7 +124,7 @@ jQuery.fn.extend({
* @cat AJAX
*/
serialize: function() {
- return $.param( this );
+ return jQuery.param( this );
}
});