New to Kendo UI for jQueryStart a free 30-day trial

Value

methods

Gets or sets the value of the TimePicker.

Parameters:valueDate|String

The time value to set for a TimePicker, expressed as a Date object or as a string.

Returns:Date

The time value of a TimePicker.

<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    value: "10:00 AM"
});

var timepicker = $("#timepicker").data("kendoTimePicker");

var value = timepicker.value();
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(value);
</script>
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker();

var timepicker = $("#timepicker").data("kendoTimePicker");

timepicker.value("10:00 AM");
</script>
Not finding the help you need?
Contact Support