snowberb – 11-12 Sep 19
How can I change the PDF title after using an
I tried with:
iframe to display a base64 pdf?I tried with:

iframeiframe to display a base64base64 pdf?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>`,
);
}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>`,
);
}
