I'm trying to hide the handle (the bar that allows you to drag and the slider.
I'm currently using the nouislider javascript library and now trying to get rid of it.
So far I've tried the following:
Html:
<div class = 'slider' id='sliderinfo'> </div>
Javascript:
var slider = document.getElementById('sliderinfo');
var hider = slider.getElementsByClassName('.noUi-handle');
hider.remove();
//Separate way of hding
as well as the following somewhat related SO response including these two and I've had no response as to hiding or removing the handle for the slider.
Thanks.