Topic:
Download PDF using javascript
Solution:
Below is the script which will help in Download PDF.
var x= 'http://your-site/pdf-report/purchasing-report.pdf'; //PDF URL myTempWindow = window.open(x,'','left=10000,screenX=10000'); myTempWindow.document.execCommand('SaveAs','null','download.pdf');
No comments:
Post a Comment