User-118859203 posted
Hi there,
Jquery datepicker is not working in my theme. Datepicker is looking ok but problem in my theme. My code is
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Datepicker</title>
<link rel="stylesheet" href="../App_Themes/Default/ui.datepicker.css" type="text/css"
media="screen" title="Smoothness" />
<script src="../Shared/Scripts/jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="../Shared/Scripts/jquery-ui-1.5.3.min.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(document).ready(PageLoad);
function PageLoad() {
$('#textBox1').datepicker();
}
</script>
</head>
<body>
<input type="text" id="textBox1" />
</body>
</html>
Any suggestion please, how to fix. Thanks for your help!