views:

165

answers:

2

Are cookies preserved while doing windows.location(url), if domain of url is the domain of the current page?

+4  A: 

Yes. It's the same thing and it will retain all cookies.

this. __curious_geek
Thanks for quick help..
Rohit
+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
+1 for more details
Jeremy
+1 for satisfying my semantics teacher back in philosophy 101.
Boldewyn