Files
insomnia/packages/insomnia-httpsnippet/test/fixtures/output/javascript/jquery/full.js
Gregory Schier 4901f03041 Add Prettier
2018-06-25 13:42:50 -04:00

19 lines
381 B
JavaScript
Executable File

var settings = {
async: true,
crossDomain: true,
url: 'http://mockbin.com/har?foo=bar&foo=baz&baz=abc&key=value',
method: 'POST',
headers: {
cookie: 'foo=bar; bar=baz',
accept: 'application/json',
'content-type': 'application/x-www-form-urlencoded'
},
data: {
foo: 'bar'
}
};
$.ajax(settings).done(function(response) {
console.log(response);
});