Hi @shresthabros ,
Yes it works except you need to double click. This is how I add to functions.php
add_action( ‘wp_footer’, function() { ?>
<script>
jQuery(function ($) {
$(“#timepicker”).click(function(){
$(this).prop(‘type’, ‘time’);
});
});
</script>
<?php } );