Answers for "function on modal hide event in javascript"

3

bootstrap modal on hide event

$('#myModal').on('hidden.bs.modal', function (e) {
  // do something...
});
Posted by: Guest on June-18-2021
0

how to clean modal on js in event hide

$('#MyModal').on('hidden.bs.modal', function () {
    $(this).find('form').trigger('reset');
})
Posted by: Guest on July-09-2021

Code answers related to "function on modal hide event in javascript"

Browse Popular Code Answers by Language