PDA

View Full Version : RESET problem


Alias
11-06-2002, 07:46 PM
Hello

I find that it is possible to use text or an image as a submit button:
<a href="javascript:document.theFormName.submit();">Submit</a>

Is it possible to use text or an image as a RESET button ???

When I try:
document.theFormName.reset();
it doesn't work.

Roy Sinclair
11-06-2002, 09:36 PM
<a href="javascript:document.theFormName.reset();">Reset</a>


Just that easy :)

Alias
11-07-2002, 12:05 AM
Thanks :thumbsup: