Necesito agregar un título cuando fancybox 3 abre la ventana como iframe. Intenté agregar con ayudantes u otros, pero no hubo resultado.
No aparece el título. ¿Alguna ayuda? El enlace es este:
<a onclick="viewdetails();" data-caption="caption here" title="Title here" >xxx</a>y la función aquí:
function viewdetails() { $.fancybox.open({ width : 1280, height : 720, fitToView : false, autoSize : false, titlePosition: 'top', titleShow: true, src : 'page.php', type: 'iframe', scrolling: true, opts : { modal: false, afterShow : function( instance, current ) { }, toolbar : false, smallBtn : true, iframe : { css : { width : '1280px', height : '800px' } } } }); }Si inicia Fancybox usando $.fancybox.open() , ¿cómo puede saber que desea que use un atributo de algún enlace aleatorio en la página? Utilice la opción caption .