Download attribute not working in Firefox

You might try adding the element to the DOM before triggering the click:

document.body.appendChild(link);
link.click();
document.body.removeChild(link);

This worked for me in Firefox 34

jsfiddle: http://jsfiddle.net/8wos7cf8/7/

Leave a Comment