I am using Twitter bootstrap, I have specified a modal
-
2020-11-22 13:03
Why not make it more general with BS 3? Just use "[something]modal" as the ID of the modal DIV.
$("div[id$='modal']").on('hidden.bs.modal',
function () {
$(this).removeData('bs.modal');
}
);