Reputation: 50810
I have a form in the order;
Textbox
Dropdown
Now when user moves focus from textbox to dropdown, the keyboard still remains and it kind of hides the dropdown options...
How do I make the keyboard hide (onblur of textbox)
I have already tried window.blur and it does not work.
Please help me. thank you.
Upvotes: 1
Views: 2312
Reputation: 1556
you can try to focus() on a non-text element.
or
$("#yourTextField").blur(); //jquery
Upvotes: 2