Im using fancybox to show pdf.
And its working fine, when I click in my links with class="fancybox_pdf", the pdf opens like I wanted!
The problem is in mobile, Im testing this also in my smartphone, and When I click to open my link with class="fancybox_pdf", the pdf is transferred and the fancybox opens empty, .
Do you know if this is normal? Fancybox to open pdf dont work on mobile devices?
(If i resize my browser for the mobile version on desktop, the fancybox with pdf also works fine)
This is my html:
<nav id="menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a class="fancybox_pdf" href="../pdf/pdf1.pdf">PDF 1</a></li>
<li><a class="fancybox_pdf" href="../pdf/pdf2.pdf">PDF 2</a></li>
<li><a class="fancybox_pdf" href="../pdf/pdf3.pdf">PDF 3</a></li>
</ul>
</nav>
I have this jQuery script:
$(".fancybox_pdf").fancybox({
width: '80%',
height: '80%',
autoSize: false,
type: 'iframe',
iframe: {
preload: false
}
});