I used to have a working datetimepicker on my website, but now it was stopped working. I found the js I was referencing was taken down. I went to the page and downloaded the js and stored it locally on my server.
Here is where I get the js from:
http://trentrichardson.com/examples/timepicker/
I import jquery and jquery ui before datetimepicker:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
The error I am getting is:
Uncaught TypeError: Object [object Object] has no method 'prop' datetimepicker.js:387
Should this method come from the jquery-ui and how can I fix this?