Yes, it's right. Browsers only support GET and POST for submitting forms. You can use AJAX:
$.ajax({
url: '/action',
type: 'PUT',
data: { param1: 'value1' },
success: function(result) {
}
});
And if you want to submit an AJAXify form, you can see the jquery.form plugin .
source
share