fparaggio
fparaggio

Reputation: 453

Hiding ios keyboard in Cordova. Is it possible?

I am using cordova 3.4.0 and I would like to hide the keyboard once the ajax call did the job on search. I would like to avoid users to press "done" to hide de keyboard and see the result.

Upvotes: 2

Views: 1223

Answers (1)

R3tep
R3tep

Reputation: 12854

When you execute the ajax call, try this :

document.activeElement.blur();

With this you lose focus on the current element and the keyboard disappear.

Upvotes: 5

Related Questions