0

I been building apk for android device,

now I want to detect, when the user press enter key or search key on keyboard

also I interesting for the other devices like IOS and WinPhone .

If you have some example, I appreciate it

rChavz
  • 235
  • 3
  • 16

1 Answers1

0

here is some solution for my owned question.

you can try with JQuery solution:

jQuery( document ).on( "keypress", "#IdSender", function(evt){
     var keycode = evt.keyCode || evt.which;
     alert("KeyCode: " + keycode);
});
rChavz
  • 235
  • 3
  • 16