Created
February 18, 2016 15:15
-
-
Save kidker/5db5ff832d3f7773d404 to your computer and use it in GitHub Desktop.
location href
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// window.location | |
window.location.replace('http://www.example.com') | |
window.location.assign('http://www.example.com') | |
window.location.href = 'http://www.example.com' | |
document.location.href = '/path' | |
// window.history | |
window.history.back() | |
window.history.go(-1) | |
// window.navigate; ONLY for old versions of IE | |
window.navigate('top.jsp') | |
// probably no bueno | |
self.location = 'http://www.example.com'; | |
top.location = 'http://www.example.com'; | |
// jQuery | |
$(location).attr('href','http://www.example.com') | |
$(window).attr('location','http://www.example.com') | |
$(location).prop('href', 'http://www.example.com') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment