I'm making a simple multiple choice program using radio buttons. When the student gets an answer wrong I can put an X after her choice, but how do I make the X red? Thanks for any help, Gerard
<body>
<input type="radio" name="Q1" value="1756-1819,Berlioz"
onclick = "radioProcessor(this)" /> 1756-1819
<script>
function radioProcessor(theRadio){
theRadio.nextSibling.nodeValue = theRadio.nextSibling.nodeValue + " X";
}
</script>
</body>