bootstrap modal auto pass code example
Example 1: bootstrap modal
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').trigger('focus')
})
Example 2: modal in bootstrap 4
$('#myModal').modal('handleUpdate')
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').trigger('focus')
})
$('#myModal').modal('handleUpdate')