How to Remove Download option from HTML Audio Player

Have you any Mp3 website? and you have use HTML audio player and want to hide download button from audio player. So paste given code on your HTML audio player’s code.

Code controlsList=”nodownload noplaybackrate”
(for remove three dots from player)

How To Do

  1. Open audio player’s code like.
  2. Then paste given code between <audio CODE> ….. </audio>
  3. Then SAVE and take a look.

Follow given code only HTML audio player.

Example

With three dots-
<audio id=”audio_player” controls >
<source src=”SongURL” type=”audio/mpeg”>
</audio>

Without three dots-
<audio id=”audio_player” controls controlsList=”nodownload noplaybackrate”>
<source src=”SongURL” type=”audio/mpeg”>
</audio>

Watch Video in HINDI