GET:$.get(..)
GET
$.get(..)
POST:$.post()..
POST
$.post()..
What about PUT/DELETE?
PUT/DELETE
You can do it with AJAX !
For PUT method :
PUT
$.ajax({ url: 'path.php', type: 'PUT', success: function(data) { //play with data } });
For DELETE method :
DELETE
$.ajax({ url: 'path.php', type: 'DELETE', success: function(data) { //play with data } });