I have the following divs:
<div id="header">
<input type="text" id="input_navbar"/>
</div>
<div id="core">
Listing
</div>
<div id="status"></div>
Then I have the code:
$('#input_navbar').on('keyup',function(e){
$("#status").html($('#input_navbar').val());
});
The keyup event never fires up. If I replace it with keypress or change it works fine. Is there something specific that has to be kept in mind when it comes to keyup event?
This is fixed in PhoneGap 2.1.0. It’s not available yet, I had to build it myself.