Javascript: Download PDF using javascript

Topic:

Download PDF using javascript

Solution:

Below is the script which will help in Download PDF.

1
2
3
myTempWindow = window.open(x,'','left=10000,screenX=10000');
myTempWindow.document.execCommand('SaveAs','null','download.pdf');

No comments:

Post a Comment