![]() |
|
|
|
|
1
5th October 02:02
External User
Posts: 1
|
As Bob mentioned you are talking about javascript not java (very different
animals!) The code you'll need will be something like this: <FORM> Complete: <input name="complete" type="radio" value="1" onClick="document.all.completed.style.display ='';"> Incomplete: <input name="complete" type="radio" value="1" onClick="document.all.completed.style.display ='none';"> <SPAN id="completed" STYLE="display:none"> <hr> Semester: <select name="semester"></select><br> Grade: <select name="grade"></select> </SPAN> </FORM> Basically when you click on the radio buttons they will show or hide (depending which one u click!) all the code between the 'completed' SPAN tags. cheers Jon Visation Ltd www.MyGolfingLife.com - find great golf courses near you! --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.752 / Virus Database: 503 - Release Date: 03/09/2004 |
|
|
|