Forum Moderators: open
thanks
Would you be doing this through javascript on the client-side and using the onclick event? Where you would then display some of the other options available from a hidden div tag using the DOM.
If it is use of asp where the page would refresh with the new options then am afraid i cannot help.
-gs
<script language="javascript">
function show(object) {
document.getElementById(object).style.visibility='visible';
}
</script>
<input type="checkbox" name="checkOptions1" onclick="show('checkOptions1')">Opt 1
<input type="checkbox" name="checkOptions2" onclick="show('checkOptions2')">Opt 2
<div id="checkOptions1" style="visibility:hidden">
show checkOptions1
</div>
<div id="checkOptions2" style="visibility:hidden">
show checkOptions2
</div>
Obviously you may wish for it to hide on check off am looking at that just now!
-gs