Referred this links Link1 Link 2 but not able clear the data's.
I am using bootstrap modal window in my web application. When modal is closed (triggered hidden event to clear the data), previously entered data's are not cleared.
Here is the fiddle` what i tried.Even I tried with form reset but not get success.
$("#modal").on('hidden.bs.modal', function (e) {
        $('#modal_form')[0].reset();
        $("#modal").removeData('bs.modal');
    });
    $("#modal").click(function() {
        $("#modal").removeData('bs.modal');
        $("#modal").modal();
    });