We are developing a mobile web app in jQuery Mobile 1.0.1 and Phonegap 1.4.1 and have run into issues with the keyboard on the galaxy s2.
We have a menu which slides out
$('#pageid').live('pageshow', function(event, ui) { $(this).delegate('input[data-type="search"]', 'keyup', function () { if($(this).val().length != 0) keyword = $(this).val(); }); });