Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 3 down vote accepted

You're looking for a response header of Set-Cookie:

xhr.getResponseHeader('Set-Cookie');

It won't work with HTTPOnly cookies though :)

share|improve this answer
   
Is there a way to instruct my browser to append the new cookies to my form? – Kees C. Bakker Oct 11 '12 at 14:50
If you send another request, those cookies wold be sent again. But since they're just strings you can add them as hidden fields I suppose. – Jack Oct 11 '12 at 22:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.