I am struggling with the implementation of the BootStrap Slider from this source:
I have encountered an unusual requirement. I need to capture the values of the slider only when the user stops dragging it, not during the process of sliding. In other words, I want to detect the resting points of the slider after each drag action. Is there a specific event or method in the slider library that allows me to achieve this?
Currently, I am using the code from the examples provided in the link above, specifically Example 6 which demonstrates:
$("#ex6").on("slide", function(slideEvt) {
$("#ex6SliderVal").text(slideEvt.value);
});