Answers for "hide modal using jquery"

3

jquery close bootstrap model

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

hide bootstrap modal jquery

$(document).ready(function(){
        $(".btn").click(function(){
            $("#myModal").modal('hide');
        });
});
Posted by: Guest on September-19-2020
0

hide and show modal jquery

$('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');
Posted by: Guest on April-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language