I'm using JQuery Form Plugin and I'm not sure how to set headers.
I want to be able accomplish something like this:
$.ajax({
url: "/url",
data: post,
type: "POST",
beforeSend: function(jqXHR) {
jqXHR.setRequestHeader("foo", "bar");
},
})
but the beforeSubmit event dosn't pass the jqXHR object for manipulation. Any ideas?
The following code works for me.
$('#myForm').ajaxSubmit({
headers: {
"foo": "bar"
}
});