Skip to content

Instantly share code, notes, and snippets.

@deptno
Created April 23, 2015 20:49
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
[js] request HEAD
if (!jQuery) {
throw 'need jQuery';
}
!(function(url, header) {
$.ajax({
type: 'head',
url: url,
headers: header,
success: function(str, num, xhr) {
console.log('success');
debugger;
},
error: function(error) {
console.log('error');
debugger;
}
});
})('https://auth.fvcmd.test/cert', {
'Accept': 'application/vnd.fvc.v1+xml',
'Access-Control-Request-Headers': 'x-auth-timestamp'
});
//'https://auth-ctv.cp-test.digitaluk.co.uk';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment