Javascript onclick return false does not work in IE6, IE7
Workaroud:Instead of:
onclick="yourFunction(); return false;"
Use this:
onclick="yourFunction(); event.returnValue=false; return false;"
I want to change the world but they won't give me the source code.
0 comments:
Post a Comment