I am trying to use the date and time picker located at
http://razum.si/jQuery-calendar/TimeCalendar.html
However this picker works only if the jquery-ui.js is not included. It looks like it conflicts with something with the base jquery-ui.js.
The jquery core api is required.
Any insight would be helpful.
thanks in advance.
The code is
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery-calendar.js"></script>
<link rel="stylesheet" type="text/css" href="jquery-calendar.css" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<script type="text/javascript">
//<![CDATA[
$(document).ready(function (){
$("#calendar1").calendar();
});
//]]>
</script>
and the code to bring the popup on focusing on input field is
<input type="text" id="calendar1" class="calendarFocus"/>
The script can be seen by looking into the source of the page, for which link is given above. (I am not able to post more links here, as stack overflow is not allowing it).