Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Latest commit

 

History

History
19 lines (18 loc) · 452 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 452 Bytes

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);
    }
});