How to force autofocus on a Textbox with javascript if autofocus does not work ( autofocus is not working)


Question:  autofocus is not working on a textbox, I tried $('#textboxName').focus(); and it does not work.

Login to See the Rest of the Answer

Answer:
If autofocus is working on your textbox, use setTimerout function to trigger autofocus on a textbox. See the code below:

$(document).ready(function(){

setTimeout(function () {
            $('#IdOfTextBox').focus();
        });
});





© 2023 - ErnesTech - Privacy