1.So I want to change controlist="nodownload"
to controlist="download"
after the page loads using Javascript.
<html>
<body>
<audio id="preview"controls=" " controlist="nodownload"
<source src="horse.mp3" type="audio/ogg">
</audio>
</body>
</html>
2.my javascript:
window.onload = function() {
var x = document.getElementsByid("preview");
x.setAttribute("controlist", "download");
}
this doesn't work so can you rectify my errors to make it work.
[Violation] 'load' handler took 23639ms
[Violation] 'setTimeout' handler took 73ms
[Violation] 'visibilitychange' handler took 762ms