Hi,
How to make audio play automatically in Mobile Browser HTML5?
When browser is opened in mobile the audio will be played automatiacally.
<audio controls> <source src="/welcome.mp3" type="audio/mpeg"> </audio>
Hi makenzi.exc,
Set HTML5 audio element autoplay attribute.
Refer below sample.
HTML
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> body { font-family: Arial; font-size: 10pt; } </style> </head> <body> <audio id="audio" controls autoplay> <source src="https://www.aspsnippets.com/audio/welcome.mp3" type="audio/mpeg"> </audio> </body> </html>
Demo
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.