Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DRY out $.get and $.post. Fixes #7847. Thanks to cowboy for the patch.
  • Loading branch information
csnover committed Dec 27, 2010
2 parents 52b1709 + 78a6f5b commit 4443371
Showing 1 changed file with 7 additions and 22 deletions.
29 changes: 7 additions & 22 deletions src/ajax.js
Expand Up @@ -113,9 +113,8 @@ jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".sp
};
});

jQuery.extend({

get: function( url, data, callback, type ) {
jQuery.each( [ "get", "post" ], function( i, method ) {
jQuery[ method ] = function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
Expand All @@ -124,13 +123,16 @@ jQuery.extend({
}

return jQuery.ajax({
type: "GET",
type: method,
url: url,
data: data,
success: callback,
dataType: type
});
},
};
});

jQuery.extend({

getScript: function( url, callback ) {
return jQuery.get(url, null, callback, "script");
Expand All @@ -140,23 +142,6 @@ jQuery.extend({
return jQuery.get(url, data, callback, "json");
},

post: function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = {};
}

return jQuery.ajax({
type: "POST",
url: url,
data: data,
success: callback,
dataType: type
});
},

ajaxSetup: function( settings ) {
jQuery.extend( jQuery.ajaxSettings, settings );
},
Expand Down

2 comments on commit 4443371

@fmeyer
Copy link

@fmeyer fmeyer commented on 4443371 Dec 27, 2010

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

really cool

@pokonski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clever!

Please sign in to comment.