Does anyone know how to hide the iPhone keyboard in Safari after clicking the user’s Go button instead of Finish?
I need a solution for Javascript and HTML5.
With jQuery
You must defocus the input of the pressed button,
$("#button_id_clicked").click(function() { $("#search_input_id").blur(); // UNFOCUS THE INPUT });
I use it in my web application