You can always create a globally accessible function which closes the Bootstrap modal window.
eg.
window.closeModal = function(){
$('#iframeModal').modal('hide');
};
Then from the iframe, call it using:
window.parent.closeModal();
You can always create a globally accessible function which closes the Bootstrap modal window.
eg.
window.closeModal = function(){
$('#iframeModal').modal('hide');
};
Then from the iframe, call it using:
window.parent.closeModal();