I have not found a way to destroy the modal, currently I only hide them, which means that I have to manually clean the fields of the modal, I have tried the following without results:
$('#Modal').modal('hide');
$('#Modal').removeData();
$('#Modal').data('modal', null);
The .remove () closes the modal but, causes the screen to go black and does not allow me to take any action.
$('#Modal').remove();//provoca un bug
Also I'm using jquery 2.02 greetings thank you!