In Opera and WebKit (Safari, Chrome) this code doesn't work - handle enabled, but when I slide him - content don't change. In Firefox all good. Thanks.
P.S. In IE this code work too.
P.S. In IE this code work too.
var range = $('.range');
var selectorVar = $('.i .description, .i .service-hide');
range.rangeinput({progress: true});
var api = range.data('rangeinput');
api.setValue(0);
api.onSlide( function () {
var superVar = api.getValue();
if (superVar==0) { $('.i .service-hide').hide(); $('.i .description').show(); }
if (superVar==1) { selectorVar.hide(); $('.i-1').show(); }
if (superVar==2) { selectorVar.hide(); $('.i-2').show(); }
if (superVar==3) { selectorVar.hide(); $('.i-3').show(); }
});
