I'm working with the jQuery mobile slider input. I can have multiple sliders in my page, and what happen it's that the "change" event it's fired very often, not just when the actual input value changes.This is my code:\[code\]<div class="questionContent ui-hide-label" data-role="fieldcontain"> <input type="range" class="slider" value="" min="1" max="5" data-highlight="true" name="slider" data-theme="b" /> </div>$('input.slider').each(function() { $(this) .bind('change',function() { console.log('changed') })})\[/code\]I also created a jsFiddle for that: http://jsfiddle.net/EAewE/