this is my jquery code.eventdatpicker is display date only,but occasionStartTime and occasionEndTime it display 24 hours format only how to change this format to am/pm forma
Use this plugin to unobtrusively add a datetimepicker, datepicker or timepicker dropdown to your forms. It's easy to customize options.
You can download Plugin: Download
add js and css to head tag:
add this code to you want show:
$(function () {
$('#video_schedule').datetimepicker({
step:5,
minDate:0,
formatTime:'H:i'
});
});