Hello. I have a JS application similar to this sample: https://developers.arcgis.com/javascript/latest/sample-code/visualization-vv-color-animate/live/inde...
I just want to be able to disable the users ability to grab the slider notch and drag it to a new position. I am using JS API Version 4.11.
Solved! Go to Solution.
Add the disabled attribute to the input slider
<input
id="slider"
type="range"
min="1880"
max="2017"
step="1"
value="1984"
disabled
/>
Add the disabled attribute to the input slider
<input
id="slider"
type="range"
min="1880"
max="2017"
step="1"
value="1984"
disabled
/>
Thank you yes that worked! It does not let me grab the slider notch at all.