Removed (hopefully) all references to $ within the jQuery code itself
[jquery.git] / src / ajax / ajax.js
index 1f01553..5aeb943 100644 (file)
@@ -39,6 +39,13 @@ jQuery.fn.extend({
         *      start();
         * });
         *
+        * @test stop(); // check if load can be called with only url
+        * $('#first').load("data/name.php");
+        * setTimeout(function() {
+        *   ok( $('#first').text() == 'ERROR', 'Check if load works without callback');
+        *   start();
+        * }, 100);
+        *
         * @name load
         * @type jQuery
         * @param String url The URL of the HTML file to load.
@@ -80,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 || "" );
                                });
@@ -117,7 +124,7 @@ jQuery.fn.extend({
         * @cat AJAX
         */
        serialize: function() {
-               return $.param( this );
+               return jQuery.param( this );
        }
        
 });
@@ -281,19 +288,6 @@ jQuery.extend({
         *   }
         * )
         *
-        * @test stop();
-        * $.get("data/dashboard.xml", function(xml) {
-        *     var content = [];
-     *     $('tab', xml).each(function(k) {
-     *         // workaround for IE needed here, $(this).text() throws an error
-     *         // content[k] = $.trim(this.firstChild.data) || $(this).text();
-     *         content[k] = $(this).text();
-     *     });
-        *         ok( content[0] && content[0].match(/blabla/), 'Check first tab' );
-        *     ok( content[1] && content[1].match(/blublu/), 'Check second tab' );
-        *     start();
-        * });
-        *
         * @name $.get
         * @type jQuery
         * @param String url The URL of the page to load.