bootstrap modal popup clear data

Solutions on MaxInterview for bootstrap modal popup clear data by the best coders in the world

showing results for - "bootstrap modal popup clear data"
Sara
01 Oct 2019
1$('#yourModalName').on('hidden.bs.modal', function(event) {
2     $('#yourModalName').empty();
3});