ios - Force Hide keyboard in iPad Safari -
i have form in order;
textbox
dropdown
now when user moves focus textbox dropdown, keyboard still remains , kind of hides dropdown options...
how make keyboard hide (onblur of textbox)
i have tried window.blur , not work.
please me. thank you.
you can try focus() on non-text element.
or
$("#yourtextfield").blur(); //jquery
Comments
Post a Comment