SniberbS
Reactiflux3y ago
13 replies
Sniberb

snowberb – 11-12 Sep 19

How can I change the PDF title after using an
iframe
to display a
base64
pdf?

I tried with:
const newTab = window.open('');

    if (newTab) {
      newTab.document.title = documentName;
      newTab?.document.write(
        `<iframe title="${documentName}" width='100%' height='100%' src='data:application/pdf;base64,${encodeURI(
          base64,
        )}'></iframe>`,
      );
    }
image.png
Was this page helpful?