Skip to content

Instantly share code, notes, and snippets.

@apeckham
apeckham / gist:3381440
Created August 17, 2012 18:37
phonegap android -- back button hides suggestions, or goes back one page, or exits app
// doesn't work: when keyboard is shown, back button hides keyboard. hitting back button again exits app w/o triggering this event
$(document).on('backbutton', function () {
console.log('back pressed');
if ($.mobile.activePage.find('.suggestions').children().length > 0) {
console.log('hide suggestions');
var $input = $.mobile.activePage.find('input');
$input.val('');
$input.autocomplete('clear');