F
Frank H. Shaw
<Script>
IF <input type="submit" onclick="alert('Radio index = ' +
indexRadio(this.form.myRadio)
; return true;" >
ENDIF
</script>
function indexRadio(theRadio) {
var i;
for (i = 0; i < theRadio.length ; i++) {
if (theRadio.checked) return i );
}
}
IF <input type="submit" onclick="alert('Radio index = ' +
indexRadio(this.form.myRadio)
ELSE
ENDIF
</script>
function indexRadio(theRadio) {
var i;
for (i = 0; i < theRadio.length ; i++) {
if (theRadio.checked) return i );
}
}