estos códigos los añado justo después de procesar la petición ajax, una vez cargados los enlaces <a> con href="rutaimagen"
he sustituido el código añadido anterior, con el que no había resultado,:
Código Javascript
:
Ver originalif ( $('.gallery').length > 0 )
{
console.log('Hay ' + $('.gallery').length + ' elementos imagen en el documento');
$('.gallery').each(function() { // the containers for all your galleries
$(this).magnificPopup({
delegate: 'a', // the selector for gallery item
type: 'image',
gallery: {
enabled:true
}
});
});
}
por este otro nuevo código, pero también sin resultado:
Código Javascript
:
Ver original$(".gallery").on('click', function() {
$('.gallery').each(function() { // the containers for all your galleries
$(this).magnificPopup({
delegate: 'a', // the selector for gallery item
type: 'image',
gallery: {
enabled:true
}
});
});
});