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?
beforeSubmit
function:options.headers = {'X-Csrf-Token': window.Cookies.get('_csrf')}
– Vachil