Reputation: 93286
how do i use jquery [javascript] to goto another page?
or change the url in the browser urlfield and hit enter?
Upvotes: 6
Views: 1177
Reputation: 137512
(Plain old javascript)
window.location = 'http://another-place.com';
Upvotes: 4
Reputation: 546413
nothing to do with jQuery, just this:
window.location.href = 'whatever.html';
Upvotes: 13