Are cookies preserved while doing windows.location(url)
, if domain of url is the domain of the current page?
views:
165answers:
2
+4
A:
Yes. It's the same thing and it will retain all cookies.
this. __curious_geek
2009-12-24 12:36:55
Thanks for quick help..
Rohit
2009-12-24 12:38:34
+4
A:
To be really pedantic, changing window.location
in Javascript will cause the browser to go to another site, which includes making a GET request. In other words, a GET request and Javascripts window.location
are two completely different things; one is a type of HTTP request, the other a DOM attribute.
As pertains to the question though, they can be considered equivalent. Cookies are preserved.
</pedantry>
:)
deceze
2010-03-29 12:11:14