Answers for "delete modal popup with bootstrap and jquery"

1

hide bootstrap modal jquery

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

bootstrap modal popup clear data

$('#yourModalName').on('hidden.bs.modal', function(event) {
     $('#yourModalName').empty();
});
Posted by: Guest on December-28-2020

Code answers related to "delete modal popup with bootstrap and jquery"

Browse Popular Code Answers by Language