When would you set window.location to a URL string versus setting window.location.href?
window.location = "http://www.stackoverflow.com";
vs
window.location.href = "http://www.stackoverflow.com"
Reference: https://developer.mozilla.org/En/DOM/Window.location