Okay, I want to control the volume of an HTML5 element using the jQuery Slider element. I have implemented the slide, but can\'t figure out how to make the value of the slid
This can also be achieved with a simple input range element, without using jQuery-UI.
let audioStream = new Audio('https://mofosounds.com:8000/;');
$("#volumeSlider").change(function(){
let volume = $(this).val();
audioStream.volume = volume ;
});