Skip to content

Instantly share code, notes, and snippets.

@kidker
Created February 18, 2016 15:15
Show Gist options
  • Save kidker/5db5ff832d3f7773d404 to your computer and use it in GitHub Desktop.
Save kidker/5db5ff832d3f7773d404 to your computer and use it in GitHub Desktop.
location href
// 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