Hi,
I can't get the jQuery datepicker to work. I have followed everything from the jQuery UI manual. Can you please check my code below?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link type="text/css" href="js/jquery_theme/jquery-ui.css" rel="stylesheet" />
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript" src="js/ui.core.js"></script>
<script type="text/javascript" src="js/ui.datepicker.js"></script>
<script language="javascript">
$(function() {
$("#test_input").datepicker();
});
</script>
</head>
<body>
<input type="text" name="test_input" id="test_input" />
</body>
</html>
Thank you for your time :)