html audio player
Design and Skin Customization
this player is requiring a Json file to load playlist. Is there way to do this in jamroom? I want to load all song into this player.
//load playlist from json
fetch('data/1.txt')
.then(response => response.text())
.then(content => {
var d = JSON.parse(content);
settings.media = d
player = new waf(document.getElementById("player"), settings);
updated by @monee: 01/21/25 08:14:57AM