GET:$.get(..)
POST:$.post()..
What about PUT/DELETE?
You should be able to use jQuery.ajax :
Load a remote page using an HTTP request.
And you can specify which method should be used, with the type option :
The type of request to make ("
POST" or "GET"), default is "GET".
Note: Other HTTP request methods, such asPUTandDELETE, can also be used here, but they are not supported by all browsers.