We have a JavaScript function named \"move\" which does just \"windows.location.href = any given anchor\". This function works on IE, Opera and Safari, but so
You've got to add return false; after the window.location.href as mentioned above.
function thisWorks() { window.location.href = "http://www.google.com"; return false; } function thisDoesNotWork() { window.location.href = "http://www.google.com"; }