How to download and save a file from a WebView?

Hi Silvano,

See if adding target='_blank' works for you:

element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
element.setAttribute('target', '_blank');
element.setAttribute('download', filename);

or not specifying the filename, like so:

element.toggleAttribute('download', true);

Otherwise, what’s the device and OS version you are testing it on?