hi,
I would like to ask your help on this. I have 3 links which are related to radio buttons. Can I change the folder of the href of the links according to the selected radio?
//this is the few javascript that i have...
<script type="text/javascript">
user = new Array();
user[0]= 'mark';
user[1]= 'tom';
activeUser = 0;
</script>
<input type="radio" checked="true" onclick="redirect(this.value);" name="radio1" value="0" id="mark"/>
<label for="mark">mark</label>
<input type="radio" onclick="redirect(this.value);" name="radio1" value="1" id="tom"/>
<label for="tom">tom</label>
<br />
<a href="mark/intro.htm">intro</a><br />
<a href="mark/home.htm">home</a><br />
<a href="mark/account.htm">account</a><br />