# Description ### Create quick methods for the others HTTP verbs/methods: ``` jQuery.each( [ "put", "patch", "head", "delete", "options" ], function( i, method ) { jQuery[ method ] = function( url, data, callback, type ) { if ( jQuery.isFunction( data ) ) { type = type || callback; callback = data; data = undefined; } return jQuery.ajax({ url: url, type: method, dataType: type, data: data, success: callback }); }; }); ``` Adding something like this will help a lot of people to write a clean code when we speak about ajax methods to make _great readable ajax code_. It will look like this: $.get(...), $.post(...), **$.put(...), $.patch(...), $.head(...), $.delete(...), $.options(...),** Version proposal: 4.0.0