I’m trying to make a simple volume controller with a slider and thought this would work but it doesn’t! Can anyone help me understand this and show me what I’m doing wrong. Thanks
$w . onReady ( function () {
$w ( “#slider1” ). onChange ( ( event ) => {
let newValue = event . target . value ; // “new value”
$w ( “#audioPlayer1” ). volume = newValue ;
});