Feedback: irt.org FAQ Knowledge Base Q1073
Feedback on: irt.org FAQ Knowledge Base Q1073
Sent by Adrian Gilbert on July 28, 1999 at 04:51:40: - feedback #329
Worth: Not worth reading
Comments: This workaround does not seem to work. I tried the following and still had the same problem. <html> <head> <script> function click() { alert("testing") } </script> </head> <body> <A HREF ='javascript:click()' onclick return false > <img src="image.gif" border=0> </a> </body> </html> I also tried writing a function which returned false and putting that in the onClick event handler and that didn't work either
Sent by juiling hwang on March 15, 2000 at 13:01:43: - feedback #939
Comments: could you give example in more details. I am writing my first piece code of javascript. I tried both the following but did not work. (1) <a href="Javascript:resetForm()" onClick="resetClick()"> function resetClick() { return false; } glass cursor still shows (2) <a href="Javascript:resetForm()" > function resetForm() { .... return false; } this will display a screen that display "false"
|