I am trying this link http://jsfiddle.net/QRj83/ to make it work on my phonegap app. The codes is working properly in the website but not in the phonegap app. There is no error shown and it's strange why is not working. Have someone encountered that problem in phonegap?
This is my code in js:
$('input').keyup(function(e) {
if(e.keyCode == 13) {
$(this).next().focus();
}
});
Html code:
<input type="textbox" />
<input type="textbox" />
<input type="textbox" />
Thank you.