PDA

View Full Version : javascript help


classicwingcook
09-23-2002, 12:46 PM
Please help.

I'm trying to figure out/remember how to make some text/input boxes disappear when a button is selected.

I know that in VB and VC++ you can use the visable object (as in document.form.input1.visable), but I can't remember exactly how it goes. Is it visable=true?

Thanks a lot.
Erick

HZR
09-24-2002, 09:53 AM
document.form.input1.style.visibility = 'hidden'


oops, misspelled, hope you saw that ;)

classicwingcook
09-25-2002, 01:02 PM
Thanks a lot HZR!

Erick