6
<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?

iceheaven31
  • 877
  • 1
  • 13
  • 23
Ian McCullough
  • 1,423
  • 4
  • 25
  • 36

6 Answers6

10

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';" />
Guffa
  • 687,336
  • 108
  • 737
  • 1,005
5

.navigate() only works in IE.

Try setting the window.location.

window.location.href = 'http://www.google.com'
Brandon
  • 68,708
  • 30
  • 194
  • 223
2
<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.

Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
0
<input type='button' value='click' onclick="window.location='http://google.com';" />
Your Friend Ken
  • 8,644
  • 3
  • 32
  • 41
0

For searchers on this problem: Ensure your input not post to current page like sumbit. In this case any navigate methods will not work. To fix this add event.preventDefault() on click handler

gdbdable
  • 4,445
  • 3
  • 30
  • 46
0

window.navigate is a non-standard Internet Explorer feature. Other browsers simply don't provide the function.

You could shim it with:

if (! window.navigate) {
    window.navigate = function (arg) {
    location.assign(arg);
   } 
}  

… but your code would be better if you just rewrote it to use standard methods (i.e. the location object) in the first place.

Reference: https://stackoverflow.com/a/28793432/6737444

Ali Jamal
  • 1,383
  • 1
  • 13
  • 20