I've been trying to clear the content of modal popups on hide. But it doesn't seem to work. I've used:
$('body').on('hidden.bs.modal', '.modal', function () {
$(this).removeData('bs.modal');
});
But I guess it's not regular bootstrap modal? How can I do this?
