function downloadPDF() { var link = document.createElement("a"); link.href = "path/to/your/pdf.pdf"; link.download = "YourPDF.pdf"; link.click(); }