Open PDF in Pop-Up
.pdf-button {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
cursor: pointer;
}
.pdf-button:hover {
background-color: #0056b3;
}
Click to view the document in a pop-up:
function openPDF() {
window.open(
"https://cdn.s3waas.gov.in/s3093f65e080a295f8076b1c5722a46aa2/uploads/2020/11/2020111937.pdf",
"PDFWindow",
"width=800,height=600,scrollbars=yes,resizable=yes"
);
}