I am writing because I have a problem with the passage of the value of a textbox without the submit button, but managing the event from the keyboard. The goal is to launch the function when I click the Enter key. I wrote this code, but for now it does not work:
<form method="GET">
<input type="textfield" id="testo_libero" onkeydown="javascript: if (event.Keycode==13) desc_ricerca(this.value);">
</form>
In the javascript file:
function desc_ricerca(valore){
console.log("valore"+valore);
}
Can anyone help me? I tried that but nothing ...
function desc_ricerca(valore){
var cat = $("#testo_libero").val();
console.log(cat);
}