Please help, when I click the link and a popup will show up. When I then click on the content page block, the popup will close suddenly.
I already tired to add modal: true
, and this works, but I cannot close the popup so I need another solution. please thanks in advance.
<a class="simple-ajax-popup-align-top" href="htmlcontent.html">Popup</a>
$(document).ready(function() {
$('.simple-ajax-popup-align-top').magnificPopup({
type: 'ajax',
alignTop: false,
overflowY: 'scroll',
preloader: true,
midClick: true,
closeOnContentClick: false,
enableEscapeKey: true,
showCloseBtn: false,
mainClass: 'mfp-fade',
callbacks: {
close: function() {
// nothing
}
}
});
});