Can we call this:
$('#nomeInput').keypress(function(){ //code here...
an event listener?
Thanks.
Can we call this:
$('#nomeInput').keypress(function(){ //code here...
an event listener?
Thanks.
Yes. The function you pass to the keypress
method is an event listener.