
Untitled
By: a guest on
May 14th, 2012 | syntax:
None | size: 0.48 KB | hits: 21 | expires: Never
JQuery UI time slider causing some sort of mousedown error
$(function() {
$(".slider_start_time").slider({
range: true,
min: 0,
max: 1440,
step: 15,
slide: function(e, ui) {
var hours = Math.floor(ui.value / 60);
var minutes = ui.value - (hours * 60);
if(hours.length == 1) hours = '0' + hours;
if(minutes.length == 1) minutes = '0' + minutes;
$('#start_time_text').val(hours+':'+minutes);
}
});
});
Range
Max