Answers for "To focus on the textbox when bootstrap pop-up is open"

0

To focus on the textbox when bootstrap pop-up is open

$("#dialog-cancelReasonModal").on('shown.bs.modal', function () {
                $(this).find('#txtName').focus();
            });

•	ID of the bootstrap POP-UP = dialog-cancelReasonModal 
•	ID of the TextBox = 'txtName'
Posted by: Guest on May-07-2020

Browse Popular Code Answers by Language