$('#modal-iframe').on('show.bs.modal', function(e) {
var button = $(e.relatedTarget);
var allowFullscreen = button.data('bmdVideoFullscreen') || false;
var dataVideo = {
src: button.data('bmdSrc'),
height: button.data('bmdHeight') || 100,
width: button.data('bmdWidth') || 500
};
if ( allowFullscreen ) dataVideo.allowfullscreen = "";
// stampiamo i nostri dati nell'iframe
$(this).find("iframe").attr(dataVideo);
}).on('hidden.bs.modal', function(){
$(this).find('iframe').html("").attr("src", "");
});