Let me introduce another of IE's tricks!
Today, to my surprise I have the inverse situation. I have something working well on Internet Explorer and not on FireFox and Chrome! Seriously, does someone know why this is functional in IE and not on other browsers? This code seems useless, but that's because I've isolated the problem. Here we go:
<html>
<head>
<script>
function redirectFuncionTest(value){
document.getElementById(value).click();
return false;
}
</script>
</head>
<body>
<input type="button" value="start redirectFuncionTest"
onclick="redirectFuncionTest('idLink')" />
<a id="idLink" name="namelink" href="http://www.google.com"></a>
</body>
</html>
Any help? Is there another way to do something like that?
Thanks for read!