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

Is there a difference between these two lines?

var url = "http://www.google.com/";
window.location = url;
window.location.replace (url);
share|improve this question
1  
I also explained this here: stackoverflow.com/questions/846954/… – Mathias Bynens Apr 18 '10 at 8:37

2 Answers

up vote 78 down vote accepted

The first one adds an item to your history in that you can (or should be able to) click "Back" and go back to the current page.

The second replaces the current history item so you can't go back to it.

See window.location:

assign(url): Load the document at the provided URL.

replace(url):Replace the current document with the one at the provided URL. The difference from the assign() method is that after using replace() the current page will not be saved in session history, meaning the user won't be able to use the Back button to navigate to it.

Oh and generally speaking:

window.location.href = url;

is favoured over:

window.location = url;
share|improve this answer
10  
Why would window.location.href be favored over window.location? – Mathias Bynens Aug 11 '12 at 7:19
2  
Discussion here: stackoverflow.com/questions/2383401/… – goodeye Oct 25 '12 at 23:39
Thanks a lot for the answer. It helped me a lot to resolve the browser back button issue. – santosh kumar patro Apr 12 at 7:29

worth to remember that there are browser differences in a way hash is assigned

http://artur.ejsmont.org/blog/content/window-location-hash-difference-in-ff3-and-opera

share|improve this answer
Though not directly related to the question asked, but the situation explained in the link seems obvious in some cases. Thanks – manikanta Jul 21 '11 at 15:06

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.