Ion Range Slider with HH:mm format From & To not working
问题 I am trying to use Ion Range Slider in my project to select working hours. Ex: (08:00-19:00). $('#ion').ionRangeSlider({ grid: false, type: 'double', min: moment("0000", "hhmm"), max: moment("2359", "hhmm"), from: moment("0800", "hhmm"), to: moment("1900", "hhmm"), force_edges: true, drag_interval: true, step: 3600000, min_interval: 3600000, prettify: function (num) { return moment(num).format('HH:mm'); } }); When i want to set default working hours using from & to, it doesn't work. Slider