Forms Question.

Soldato
Joined
8 Oct 2005
Posts
4,184
Location
Midlands, UK
Hi,

Is there any way using say javascript and html for me to the following. I have a form and want to give the user basic info on what each field requires E.g. DOB, Full name etc. I want the following to happen: user clicks on the text input area and to the right of the field some explanitory text would appear. Is this possible?

Thanks
 
Look into the css property display.

One method to create what you want is too design webpage with all your tips included but set their divs display to 'none'. Then on the onClick method of each field run a javascript function that changes the relevant tips css property to 'block' (or maybe another type depending on your layout)
 
Back
Top Bottom