How do I get the values from the radio button? I tried with the code below, but it only returns me the value of the first one:
<input type='radio' name='Seguro' id="seguro" onchange="soma()" value='Sim'> Sim
<input type='radio' name='Seguro' id"seguro" onchange="soma()" value='Não'> Não
And the javascript (test):
function soma(){
....
alert(document.getElementById("seguro").value);
....
}