I am new in HTML, PHP. I have build a page with following coding -
<script src="js/jquery.min.js"></script>
<script src="js/timepicki.js"></script>
<link rel="stylesheet" type="text/css" href="css/timepicki.css">
<script>
$(document).ready(function (){
$(".time_element").timepicki();
});
</script>
<script src="jquery-1.6.2.min.js"></script>
<script src="jquery-ui-1.8.15.custom.min.js"></script>
<link rel="stylesheet" type="text/css" href="jqueryCalendar.css">
<script>
jQuery(function () {
jQuery( "#datepicker" ).datepicker();
jQuery( "#datepicker1" ).datepicker();
});
</script>
problem is only second one is working. If I put the first portion in the place of second it also work but both together does not. How can I combine those. I tried "body onload" method and also tried "addloadevent" but probably I am not writing the code properly. Any help will be greatly appreciated.