paladaxar
03-02-2006, 02:29 PM
Ok...this is kicking my butt. I need to make a button appear after a selection is made on a selection list. There are actually three lists. When a selection is made on the first, the second appears. When a selection is made on the second list, a third appears. When a selection is made on the third, I want a submit button to appear. I cant get it to work.
:newbie:
I'm using this to make the selection boxes appear:
function selection(selected)
document.the_form.african_countries.style.visibility= 'visible';
<select name="contenent" id='first' size="10">
<option value='africa' onclick="selection('africa')">Africa ></option>
<option value='asia' onclick="selection('asia')">Asia ></option>
<option value='europe' onclick="selection('europe')">Europe ></option>
</select>
What would I use to make a button appear?
:newbie:
I'm using this to make the selection boxes appear:
function selection(selected)
document.the_form.african_countries.style.visibility= 'visible';
<select name="contenent" id='first' size="10">
<option value='africa' onclick="selection('africa')">Africa ></option>
<option value='asia' onclick="selection('asia')">Asia ></option>
<option value='europe' onclick="selection('europe')">Europe ></option>
</select>
What would I use to make a button appear?