i am Struggling with onchange for JQuery ui timepicker plugin: http://trentrichardson.com/examples/timepicker/
I am using the following code.
$(document).ready(function ()
{
$('#CutoffTime').timepicker({ stepMinute: 15 });
});
// Trying to catch the change event
$(function ()
{
$('#CutoffTime').change(function ()
{
// do something heree
});
});
// my HTML
<input type="text" id="CutoffTime" />
For some reason it seems to go in an infinite loop? is there a better way of achieving what i need?
Method 1: $('#datetimepicker4'). on('selectTime', function() { var time = $('#datetimepicker4'). timepicker('getTime'); alert(time); // this will be a Date object that includes the time });
jquery-timepicker allows entering times via the keyboard. Setting forceRoundTime to true will round the entered time to the nearest option on the dropdown list.
To work with jQuery Datepicker onchange(), use the datepicker onSelect event. This will show which date we added currently and changed to.
You can set the default time via JavaScript : $('mySelector'). timepicker({defaultTime: '10:45 PM'});
If you look farther down the page they have an example that uses onselect
$('#CutoffTime').datetimepicker({
stepMinute: 15,
onSelect: function(dateText, inst){
if(window.console)
console.log(dateText);
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With