modal in bootstrap

Code Example - modal in bootstrap

                
                        <button type="button" data-toggle="modal" data-target="#myModal" data-backdrop="static" data-keyboard="false">Launch my modal</button>
                    
                
 

bootstrap modal popup

                        
                                $('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');
                            
                        
 

bootstrap modal

                        
                                $('#myModal').on('shown.bs.modal', function () {
  $('#myInput').trigger('focus')
})