What steps will reproduce the problem?
1. Using the folowwing:
$('.nyroModalll').live('click', function(){
var url = $(this).attr('href');
$.ajax({
url: url,
success: function(data) {
$('#put_add_info_here').empty().html(data);
var width = $('#put_add_info_here').width();
var heigth = $('#put_add_info_here').height();
$('#put_add_info_here').empty();
//alert(width);
$.fn.nyroModalManual({
bgColor: '#000000',
type: 'iframe',
resize: true,
closeButton: '<a href="#" class="nyroModalClose" id="closeBut" title="Затвори"></a>', autoSizable: true,
cssOpt: {wrapper: {
position: 'absolute',
top: '50%',
left: '50%',
width: width,
heigth: heigth,
minWidth: '700px',
minHeight: '450px'
}, loading: {
position: 'absolute',
top: '50%',
left: '50%',
marginTop: '-50px',
marginLeft: '-50px'
}
},
content: data
});
}
});
return false;
});
2. I call the modal with an <iframe src="some page with embed video"></iframe>
3. After closing of the modal the sounds continues in CHrome. IE. OPera. For FF I think it is OK.
Version of modal used: 1.6.2