Load, Play, and Pause Audio or Songs in your HTML website 🎵
2 min readJan 10, 2021
--
Playing Audio during your HMTL website can really spice up your site.
👏 THANKS: I appreciate your claps cause it takes time to write these free articles.
0.) (Pre-req) Drag the audio file into your Code 💻
Ensure you have an audio file (ex: .mp3) accesible in your code.
1.) Use this code to load and play/pause the audio🌳
let audio = new Audio('YOUR_AUDIO_FILE.mp3');// Play Audio
audio.play();// Pause Audio
audio.pause();// Reload audio from beggining
audio.load()
Go to the W3 Schools Audio Object docs for more properties/methods.
Thanks for reading! 👏 Please leave a clap if this helped. Also…