jquery ui timepicker onChange Event

13.9k views Asked by At

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?

1

There are 1 answers

1
grdaneault On BEST ANSWER

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);
    }
});