PDA

View Full Version : Hiding HTML on Page


jkdunne
01-31-2005, 12:51 PM
Hi all I am developing a testing application with Java servlets and dynamically generating HTML.

For inputting questions to the database I ahve the following.

A text area for entering the question and 6 options for question answers as text boxes.

What I want to do is have more option boxes but not display these unless a button is clicked or some other method without refreshing the page.

Thamior
01-31-2005, 02:27 PM
css:
display: none;

and then just switch classes at the apporpriate time to have it appear.