This is in reference to the question previously asked
The problem here is, each slider controls the other. It results in feedback.
How do I possibly stop it?
$(function() { $('#slider').slider({ slide: moveSlider2 }); $('#slider1').slider({ slide: moveSlider1 }); function moveSlider2( e, ui ) { $('#slider1').slider( 'moveTo', Math.round(ui.value) ); } function moveSlider1( e, ui ) { $('#slider').slider( 'moveTo', Math.round(ui.value) ); } });
This is sort of a hack, but works:
Basically, you avoid the feedback by manipulating the css directly, not firing the slide event.