Answers for "how to close the bootstrap modal in jquery"

3

jquery close bootstrap model

$('#modal').modal('hide');
Posted by: Guest on July-21-2020
1

hide bootstrap modal jquery

$(() => {
  $(".btn").on('click', function(){
    $("#myModal").modal('hide');
  });
});
Posted by: Guest on July-30-2021

Code answers related to "how to close the bootstrap modal in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language