I noticed that in new version of Chrome browser (55.x) the audio player (HTML<audio>
) has download button. I see this button in Chrome only and I can't find anything about how to turn it off.
Code:
<audio src="audioUrl.mp3" controls=""></audio>
Ideally I'd like to hide this button but if hiding button is not possible I'd like to prevent downloading file when button pressed. I couldn't find any ondownload
event where I could do such thing.
Any help will be appreciated.