I have the following HTML code:
function idade() {
var idade = document.getElementById('idade')
alert("A idade do cliente é: " + idade);
}
<form name="cliente">
Nome: <input type="text" name="nome" /></br>
</br>
Endereço: <input type="text" name="endereco" /></br>
</br>
Cidade: <input type="text" name="cidade" /></br>
</br>
Sexo: <input type="radio" name="sexo" value="M" />Masculino
<input type="radio" name="sexo" value="F" />Feminino</br>
</br>
Idade: <input type="text" name="idade" /></br>
</br>
<input type="submit" onclick="idade()" />
</form>
However, at the time I click the button nothing happens.