Hide iPhone Keyboard with Javascript

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.

+7
source share
1 answer

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

+8
source

All Articles