Date Time Picker for jQuery Mobile

Date Time Picker for jQuery Mobile

Because I couldn't find a decent date time picker for jQuery Mobile I
wrote one myself.
You can download it from: link to datetime picker
It works very simple. Put an input text field on your web page:
<div data-role="fieldcontain">
<label for="start_at">Start At:</label>
<input id="start_at" name="start_at" type="text" value="" />
</div>
Between the script tags of the page include the library and one line of code:
<script src="/<path>/mobbah-datetime-picker.js"></script>
<script type="text/javascript">
$('#start_at').on('click', dateTimePicker);
<script>
And voila!. Click on the input text field in the web page to open the
datetime picker.
A few caveats:
It doesn't check for valid dates. I didn't need that for my purpose.
Positioning can be improved (just below the input text field).
Styling is very rudimentary.
Feel free to use and modify it.