I am implementing a range slider within the bootstrap template:
<input type="range" name="range" step="50000" min="100000" max="1000000" value="" onchange="rangePrimary.value=value">
<input type="text" id="rangePrimary" />
The range value is displayed in the text-field with id rangeprimary
.
I want to make this range slider work as a price range slider, where the lowest and highest ranges would be passed into two text-fields
Most of the price range sliders I have seen don't work well with the template am using.