- Home
- Categorie
- Coding e Sistemistica
- Javascript & Framework
- iframe compatibile con smartphone e tablet (ipad)
-
iframe compatibile con smartphone e tablet (ipad)
Salve utenti,
avrei bisogno del vostro aiuto...Quando devo includere un iframe per la visualizzazione di un pdf, utilizzo:
<iframe src="....."></iframe
Però questo non risulta compatibile con Ipad...avete qualche soluzione?
Avevo provato ad usare Jquery, ed in particolare:
<!DOCTYPE html> <html> <head> <script src="ajax/libs/jquery/1.7.1/jquery.min.js"></script> </head> <body> <iframe src="1.pdf" width="80%" height="600" id='frameDemo'></iframe> <script>$("#frameDemo").contents().find("a").css("background-color","#BADA55");</script> </body> </html>
Ma chi ha la possibilità di visualizzarlo su IPAD mi dice che non funziona...come ovviare il problema?
Grazie!
-
Prova con embed
<embed width="800" height="600" src="http://www.dominio/nome.pdf">Valerio Notarfrancesco
-
Grazie Valerio, provo e ti faccio sapere!