I have a $.ajax request on the same domain and I want to read the cookie. It keeps returning null.
$.ajax({
type: 'GET',
url: myUrl,
success: function(output, status, xhr) {
alert(xhr.getResponseHeader("MyCookie"));
},
cache: false
});
Any ideas? I'm using Chrome for this.