I am making a web site and want to I want to load an MP3 file when my page refreshes, but somehow it won't play.
<body>
<audio id="kofi" autoplay="autoplay">
<source src="kofi.mp3" type="audio/mp3">
</audio>
<script type="text/javascript">
window.onload = function(){
document.getElementById('kofi').play(); // On this line I get error "Uncaught (in promise) DOMException"
}
</script>
<body>