javascript download file from link code example
Example 1: html link to download file
<a href="the/name/of/your/file.x" download>
Example 2: javascript download file
$('a#someID').attr({target: '_blank',
href : 'http://localhost/directory/file.pdf'});