Skip to content

Instantly share code, notes, and snippets.

@ceteri
Created August 17, 2018 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ceteri/0ae116347c4ec94e191f387c3f824681 to your computer and use it in GitHub Desktop.
Save ceteri/0ae116347c4ec94e191f387c3f824681 to your computer and use it in GitHub Desktop.
<html>
<head><title>test pdf</title></head>
<div id="pdf"
style="width:900px; height:500px"
></div>
<script src="https://pdfobject.com/js/pdfobject.min.js"></script>
<script>
var options = {
pdfOpenParams: {
page: 1,
view: "Fit",
toolbar: 0
}
};
PDFObject.embed("http://www.orimi.com/pdf-test.pdf", "#pdf", options);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment