I am facing an unusual problem in ie6.
When I use window.location to redirect the page through javascript, it works fine in all browsers except ie6.
It works in ie 6 if I post exactly the same as below:
<a href="javascript:void(0);" onclick="javascript:window.location('http://www.demo.com');">demo</a>
but it does not work for the code below.
<a href="javascript:void(0);" onclick="javascript:redirect();>demo</a>
function redirect()
{
window.location('http://www.demo.com');"
}
You can understand that the problem is here.
Thank.
Avinash
source
share