Click to See Complete Forum and Search --> : clear a text field


weee
04-21-2004, 04:33 PM
How can I clear a text field in JS?

Thanks!

fredmv
04-21-2004, 04:36 PM
You set its value property to null or ''.

weee
04-21-2004, 04:37 PM
document.register.passwordConfirmation.value='';

fredmv
04-21-2004, 04:38 PM
Completely correct; that should work just fine. ;)

weee
04-21-2004, 04:39 PM
THANKS