How to clear all input fields in a Bootstrap V3 modal when clicking the data-dismiss button?
This is helpfull, its work for me..
$('.bd-example-modal-sm').on('hidden.bs.modal', function () { $(this).find("select").val('').end(); // Clear dropdown content $("ul").empty(); // Clear li content });