I have a radio input:
<INPUT TYPE="radio" NAME="test" id="test" VALUE="product" CHECKED>Product<BR>
<INPUT TYPE="radio" NAME="test" id="test" VALUE="company">Supplier<BR>
now I want to set a radio's value to a hidden value. like this:
<input type="hidden" name="module" id="hdModule" onchange="document.getElementById('test').value=this.value" />
but it doesn't work.