Inside WebViewer: instantiation, iframe & loading from another domain

When you download the WebViewer package, it contains three main components:

Apryse Docs Image

webviewer.js is the main entry point of this package that uses UI and Core namespaces to render the WebViewer app inside an iframe or a web component. So, after importing webviewer.js, the WebViewer app (composed of UI and Core) can be instantiated by using the PDFTron.WebViewer constructor. If you look at the viewing sample, you will see that the app is created inside an iframe.

Apryse Docs Image

Details of instantiation

The instantiation can be summarized in one sentence.

Instantiation === Webviewer creating the iframe-wrapped app based on the options

For example, for this code:

JavaScript

1WebViewer({
2 path: '/WebViewer/lib',
3 initialDoc: 'mydoc.pdf',
4}, viewerElement)
5 .then(instance => {
6 // API functions are now ready to be called on instance
7 });

the following steps will be executed:

  1. The constructor is telling webviewer.js the path to load the library files containing the UI and Core
  2. The constructor then mounts the UI to the viewerElement provided
  3. The UI sees the initialDoc option and calls the loadDocument function from Core
  4. Core processes the myDoc.pdf document and renders it in the UI

WebViewer also has other constructor options for configuring the viewer.

WebViewer's iframe

It's important to remember that WebViewer's iframe is a completely separate window, isolated from your own HTML page. This means all WebViewer objects and namespaces are only available in the iframe. Then how do you access objects inside the iframe to call functions or to listen to events? You can do that with the instance that's returned from the constructor's promise.

JavaScript

1// Your script
2WebViewer(...)
3 .then(instance => {
4 const { UI, Core } = instance;
5 ...
6 });

The instance argument that's returned from the promise is an object that contains objects and namespaces from the iframe as well as helpful APIs. So you can:

  • call instance.Core.documentViewer.addEventListener('documentLoaded', documentLoadedHandler) to run functions when a document is loaded
  • access instance.Core.Annotations to see different annotations classes available
  • or invoke instance.UI.setCurrentPageNumber(5) to navigate the viewer to page 5.

Refer to our Usage guide or WebViewer class API for more details.

Loading WebViewer from another domain

In some scenarios, it may be necessary to put the WebViewer library files on a different domain. Although this is completely possible, it does change the WebViewer iframe source to point to another domain and with this, comes with additional considerations.

Check out the following guide for more details!

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales