Is there a difference between these two lines?
var url = "http://www.google.com/";
window.location = url;
window.location.replace (url);
|
Is there a difference between these two lines?
|
|||||
|
|
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
Oh and generally speaking:
is favoured over:
|
|||||||||||
|
|
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 |
|||
|