I'm using the Bootstrap slider plugin to create a Range Slider
in Example 2 I want to remove the tooltip
option and move the value to external one.
Here my code :
HTML
<b class="min">$ 10</b>
<input id="example2" type="text" data-slider-min="0" data-slider-max="2000" data-slider-step="1" data-slider-value="14" data-slider-tooltip="hide" />
<b class="max">$ 1000</b>
JavaScript
var slider = new Slider('#example2', {});
you can use
slide
event to get current value and embed the value where you want :You can see here Snippet example :