In the Javascript code below (I didn’t use jQuery), there are two events: one to detect the key at the time the value is entered in the input
, and another to detect the click on "Send".
HTML:
<form method="get">
<input type="text" id="meu-input" />
<input type="submit" id="meu-submit" value="Enviar" />
</form>
Javascript:
// Função que mostra o valor do input num alert
function mostrarValor() {
alert(document.getElementById("meu-input").value);
}
// Evento que é executado toda vez que uma tecla for pressionada no input
document.getElementById("meu-input").onkeypress = function(e) {
// 13 é a tecla <ENTER>. Se ela for pressionada, mostrar o valor
if (e.keyCode == 13) {
mostrarValor();
e.preventDefault();
}
}
// Evento que é executado ao clicar no botão de enviar
document.getElementById("meu-submit").onclick = function(e) {
mostrarValor();
e.preventDefault();
}
Example in jsFiddle
Won the right answer prize for Michael’s 403 :)
– user2692