<input type="button" value="Back" onClick="window.navigate('http://www.google.com')">
This works on IE8, but not firefox or opera. Anyone know why and how to fix it?
If you check the documentation for that method, you will see the quite common:
There is no public standard that applies to this method.
This means that it's a non-standard feature that most likely only works in Internet Explorer.
This will work:
<input type="button" value="Back" onclick="window.location.href='http://www.google.com';">
If you are using XHTML:
<input type="button" value="Back" onclick="window.location.href='http://www.google.com';" />
.navigate() only works in IE.
Try setting the window.location.
window.location.href = 'http://www.google.com'
<a href="http://www.google.com">Google</a>
… and "back" is a poor choice of link text. Either a link or your IE specific JS will take the user forward. It will add a URL to the end of the user's history. It won't activate the browser's Forward functionality.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With