GET
:$.get(..)
POST
:$.post()..
What about PUT/DELETE
?
13 s
You could use the ajax method:
$.ajax({
url: '/script.cgi',
type: 'DELETE',
success: function(result) {
// Do something with the result
}
});