2

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

Richard Garfield
  • 455
  • 1
  • 5
  • 13

1 Answers1

3

The download property is not supported widely which is still an experimental API.


Use Element#setAttribute method to update an attribute.

element.setAttribute('download', "what I want");
Pranav C Balan
  • 113,687
  • 23
  • 165
  • 188