Jul 2, 2002 #1 vlitim Programmer Sep 2, 2000 393 GB I am using the below code <a href=# onclick=window.location.href='test.htm'>help</a> which works fine on ie6, but on ie5 it generates no errors but just doesn't do anything!? does anyone know why this is?? Cheers Tim
I am using the below code <a href=# onclick=window.location.href='test.htm'>help</a> which works fine on ie6, but on ie5 it generates no errors but just doesn't do anything!? does anyone know why this is?? Cheers Tim
Jul 2, 2002 #2 SashiRaveendran Programmer Nov 6, 2001 865 GB you need return false after the window.lcoation: <a href="#" onclick="window.location.href='test.htm'; return false">help</a> Upvote 0 Downvote
you need return false after the window.lcoation: <a href="#" onclick="window.location.href='test.htm'; return false">help</a>
Jul 2, 2002 Thread starter #3 vlitim Programmer Sep 2, 2000 393 GB cheers for that! Upvote 0 Downvote