🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

The Bootstrap range plugin converts the normal text field into a range picker where you can choose maximum and minimum values from a dropdown select when focused.

Bootstrap ranger-picker

Documentation

bootstrap-range

jQuery plugin for select minimum and maximum value from a list

$('.price').bootstrapRange({     minValues: [0,1000,2000,3000],     maxValues: [0,1000,2000,3000],     minPlaceholder:'Minimum',     maxPlaceholder:'Maximum',     minHintText: "from",     maxHintText: "to",     minimumCallback: function (min) {         console.log(min);     },     maximumCallback: function (max) {         console.log(max);     } });

You May Also Like