A new version of the jSuites JavaScript Calendar plugin is available here.
jSuites Calendar v5
Calendar With Time Picker
The example below enables the time picker on the JavaScript calendar.
Javascript date and time picker
How to enable the hour and minutes dropdown.
<html>
<script src="https://jsuites.net/v4/jsuites.js"></script>
<link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" />
<input id='calendar' />
<script>
jSuites.calendar(document.getElementById('calendar'), {
time:true,
format:'DD/MM/YYYY HH24:MI',
});
</script>
</html>