I have looked all over to solve this issue and all suggestions I have received have not worked. This is what I'm importing:
<link href="css/jquery-ui-1.8.12.custom.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.5.1.js" type="text/javascript"></script>
<script src="js/jquery.ui.widget.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.12.custom.min.js" type="text/javascript"></script>
<script src="js/jquery.ui.datepicker.min.js" type="text/javascript"></script>
This is the Jquery and text box
<script type="text/javascript">
$(function () {
$('#EarliestArrivalTB').datepicker();
});
</script>
<asp:TextBox ID="EarliestArrivalTB" runat="server"></asp:TextBox>
I got it working on my localhost but when i moved it over to the web server, it does not work. What am i doing wrong here?