Input value never changing
See original GitHub issueSorry if this is a duplicated of this other issue.
I open a new one because I feel like nobody will get notifications on a closed one.
The problem is that my input value always shows the same, and sending my form the value is the same as well.
It never changes when the user moves the slider. Here is some of my code:
<input type="range" name="valor-contenido" data-min="1000" data-max="1000000" data-step="100" data-from="2000" value="2000" class="wpcf7-form-control wpcf7-range wpcf7-validates-as-required wpcf7-validates-as-number full-width" aria-required="true" aria-invalid="false">
And the slider initialization:
$('input[name=valor-contenido]').ionRangeSlider({ skin: "round", onChange: function (data) { console.log(data.input[0].value); //THIS IS ALWAYS --> 100 console.dir(data); } });
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (3 by maintainers)

Top Related StackOverflow Question
Ok perfect! thanks for all your help @IonDen.
Remember 2 things:
rangesupports only 1 handle and 1 value. So in case of 2 handles it is out of game.In version 3.x I will drop old IE support of course, but not for 2.x version.