PDF in the iframe triggering download automatically

Viewed 4496

I have below iframe in one of the page in my website.

<iframe src="http://www.pdf995.com/samples/pdf.pdf" id="iframe1">

But when I open same page in android mobiles chrome browser it is automatically triggering download of file which is mentioned in the iframe. How can I prevent auto triggering of download in mobile devices?

2 Answers

You can use this format:

https://docs.google.com/viewerng/viewer?url=http://yourfile.pdf

Just replace http://yourfile.pdf with the link you use.

Related