DA.
DA.

Reputation: 40697

JavaScript window.location and JS Frame error

I'm trying to redirect a page via JavaScript:

window.location('http://www.google.com');

but in firefox, I'm getting this error:

Error: uncaught exception: [Exception... "Cannot convert WrappedNative to function" nsresult: "0x8057000d (NS_ERROR_XPC_CANT_CONVERT_WN_TO_FUN)" location: "JS frame :: [url of my page] :: anonymous :: line 1809" data: no]

and, well, I have no idea what that means. What's a JS frame? I'm not using any frames on the page itself.

Stumped.

Upvotes: 0

Views: 1322

Answers (1)

Matt Ball
Matt Ball

Reputation: 360056

Do it like this:

window.location.href = 'http://www.google.com';

Upvotes: 2

Related Questions