The sample for the Bootstrap slider has this code:
Label1.textContent = Slider1.getValue();
// Capture the value as it changes:
// notice the nonstandard event name
Slider1_input.onslide = function() {
Label1.textContent = Slider1.getValue();
};
How do I add the .onslide event to the form? I tried typing it in - not recognized. Without it my slider not working.
Thanks