jQuery(document).ready(function($) {
// Abre el popup al hacer clic en un botón o enlace
$(‘#open-popup-button’).on(‘click’, function() {
// Abre el popup con el ID correspondiente
$.magnificPopup.open({
items: {
src: ‘#ninja-form-popup’, // Cambia esto al ID de tu popup
type: ‘inline’
}
});
});
// Cierra el popup al hacer clic en el botón de cierre
$(‘#close-popup-button’).on(‘click’, function() {
$.magnificPopup.close();
});
});