Skip to content
Advertisement

how to show the pdf in a modal instead of opening it in a new window in react js

I have created a pdf file using blob text in react js and using “window.open(fileURL, “_blank”)” i am able to see the pdf in a new window.

But now my requirement is just to show the pdf as a modal in ui and when clicked on the modal it can be viewed in another window.Can anybody please help on this.

Below is my code snippet:

JavaScript

Advertisement

Answer

You can add iframe with inside your modal.

JavaScript
Advertisement