I have the following slider setup:
$("#experience-filter").ionRangeSlider({
values: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, '15+'],
grid: true,
force_edges: true,
step: 5,
onFinish: function (data) {
$("#experience-filter").parent().find('.check input[type="checkbox"]').prop('checked',true);
}
});
I prefer not to have all the values in my grid. But have it like 0, 5, 15+. is this possible?