Hello.
The plug-in ion.rangeSlider is installed, this is a plug-in slider diapason.
The task is as follows: Pass the number that the slider generates in the input field to the JS.
I just have to send them to the very contents of the div, here’s the code.
<script> $(document).ready(function () { var $range = $("#range_1"), $result = $("#result_1"); var track = function (data) { $result.html("" + data.from); }; $range.ionRangeSlider({ type: "single", min: 100, max: 11000000, from: 100, step: 100, onStart: track, onChange: track, onFinish: track, onUpdate: track, prettify_enabled: true, postfix: " " }); });