I want to download the .pdf file on button click I am using the below code
downloadMyFile() {
const link = document.createElement('a');
link.setAttribute('target', '_blank');
link.setAttribute('href', 'http://designs.mydeievents.com/jq-3d-flip-book/books/pdf/aqua_imagica_visit_learnings.pdf');
link.setAttribute('download', 'aqua_imagica_visit_learnings.pdf');
document.body.appendChild(link);
link.click();
link.remove();
}
<button (click)="downloadMyFile()">download File</button>
But when I click button it is redirected on a new page but I want to download 'aqua_imagica_visit_learnings.pdf' file on download. Kindly help me . here is my link [http://stackblitz.com/edit/angular-4hjad7]