I've tried auto play the audio as background music. When I open page, it's ok. But when I reload page, It cannot play. Console log error:
Uncaught (in promise) DOMException: play() failed because the user didn't interact with the document first.
My code:
$(window).on('load', function() {
    var soundSpin = new Audio('../images/gift/spin.mp3');
    soundSpin.muted = false;
    soundSpin.play();
    soundSpin.addEventListener('ended', function() {
        soundSpin.currentTime = 0;
        soundSpin.play();
    }, false);
});
How can I fix it? Thank you so much.
 
    