2

PDF file is not opening in <embed> tag in chrome:

<embed src="http://www.example.com/pdf/100008156325455.pdf" width="510" height="432"/>

This is not working in Google chrome.
Is there is any way to show PDF file for review in all browsers?

Jan Doggen
  • 8,799
  • 13
  • 70
  • 144

1 Answers1

1

Use iframe instead of embed.

<iframe src="http://www.example.com/pdf/100008156325455.pdf" width="510" height="432"/>

DEMO

Sam1604
  • 1,459
  • 2
  • 16
  • 26