onclose modal bootstrap

To close a Bootstrap modal, you can use JavaScript/jQuery code. Here is an example of how to close a Bootstrap modal using the hide method:

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

In the code above, #myModal is the ID of the modal element. You can replace it with the ID of your specific modal. The modal('hide') function will hide the modal.

Another approach is to use the modal method with the hide option set to true:

$('#myModal').modal({hide: true});

Both of these methods will close the Bootstrap modal when triggered.