0byt3m1n1
Path:
/
home
/
kassiope
/
www
/
administrer
/
assets
/
js
/
[
Home
]
File: range-slider.js
$(document).on('ready', function(){ 'use strict'; $("#range_1").ionRangeSlider({ min: 0, max: 5000, from: 1000, to: 4000, type: 'double', step: 1, prefix: "$", prettify: true, hasGrid: true }); $("#range_2").ionRangeSlider(); $("#range_5").ionRangeSlider({ min: 0, max: 10, type: 'single', step: 0.1, postfix: " mm", prettify: false, hasGrid: true }); $("#range_6").ionRangeSlider({ min: 0, max: 10, from: 0, type: 'single', step: 1, postfix: "", prettify: false, hasGrid: true }); $("#range_4").ionRangeSlider({ type: "single", step: 100, postfix: " light years", from: 55000, hideMinMax: true, hideFromTo: false }); $("#range_3").ionRangeSlider({ type: "double", postfix: " miles", step: 10000, from: 25000000, to: 35000000, onChange: function(obj){ var t = ""; for(var prop in obj) { t += prop + ": " + obj[prop] + "\r\n"; } $("#result").html(t); }, onLoad: function(obj) { // } }); });