I have buttons in my web app using jQuery Mobile.
When clicked the buttons have the ui-focus class added which displays a blue halo around buttons. The class stays
I have found that the best way to do this is to give focus back to the page after your buttons are clicked.
$('yourButtons').click(function(){ //Do some important stuff // .... $.mobile.activePage.focus(); });