Multiple sliders - Change event triggers for all input
If we bind change event handlers to slider elements we will get an infinite loop, since each event handler changes the value of the other input. One input changes another, that one's event handler runs (changing the first input) which triggers the first input's event handler, and so on.
How do we handle a specific slider? I want to change states for each slider seperately when the change event is triggered for a particular slider.