Mombu the Programming Forum

Go Back   Mombu the Programming Forum > Programming > OT(?) Dynamic java checkbox for use with coldfusion?
User Name
Password
REGISTER NOW! Mark Forums Read




Reply
1 5th October 02:02
jon cooper
External User
 
Posts: 1
Default OT(?) Dynamic java checkbox for use with coldfusion?



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
  Reply With Quote


 


Reply


Thread Tools
Display Modes




666