I am trying to download png image with javascript.
Problem:
First it downloads image actually opens up in a new tab for user download,but after that whenever i click to download it doesnt downloading anything. But it works fine on other browser, issue with safari only.
Below what i have tried so far:
imgData = canvas.toDataURL('image/png');
link = document.createElement('a');
link.setAttribute('download', projectName+'.png');
link.setAttribute('target', "_blank");
link.setAttribute('href', imgData);
link.click();
link.remove();