I use this code to save images in Javascript :
window.location.href = grid.toDataURL("image/png").replace("image/png", "image/octet-stream");
The code works, but the file saved doesn't have any extension, I have to rename it manually.
My question is how can I put the extension at the end ?
Thank you.