How to clear all input fields in a Bootstrap V3 modal when clicking the data-dismiss button?
The following worked for me:
$(':input').val('');
However, it is submitting the form, so it might not be what you are looking for.