Skip to content
Advertisement

How do I remove the download option in the HTML5 audio tag?

I am using the HTML5 audio tag on a website I’m maintaining. I noticed that the audio tag has a download icon embedded in it. How do I remove that option? I want the audio to be read (playback) only. Is there a way to do this without JavaScript or jQuery? I don’t know either one yet.

Advertisement

Answer

Try this might it help you. It is not the best way but I think it will solve your problem.

audio::-webkit-media-controls-enclosure {
    overflow:hidden;
}

audio::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Adjust as needed */
}
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement