I have:
<a id="save-button" href="data:application/xml;charset=utf-8,your code here" download="test.cod">Save</a>
I can change the href property with:
element.href = "what I want";
but when I do
element.download = "what I want";
it doesn't work.
Does anyone know how I can change the download property?
Thanks