I focus to an input in my web-project. It works fine in web-browsers.
$("#my-search-input").focus();
When I test it in my mobile-browser (Chrome/Android), it opens keyboard caps-lock...which is not good for my AJAX-based application.
What is the reason for this and what is the most proper way to ensure keyboard will not be caps-lock?
Thank you.