No styles showing on datepicker
I have just started playing around with jQuery UI and have set up a
very basic first test page.It seems to work except there is no styling
on the calendar and it is transparent.
Here is the script
< script language="JavaScript" type="text/javascript">
$(document).ready(function(){
$('#date1').datepicker();
$('#date2').datepicker();
});
</ script>
and here is the form.
<body>
<form action="#" method="post" name="testForm" id="dateForm">
<fieldset><legend>Test Form</legend>
Start: <input name="start" type="text" id="date1" size="15" />
End: <input name="end" type="text" id="date2" size="15" />
</fieldset>
<input name="submit" type="submit" />
</form>
I have verified that the links to the style sheet are valid. I can
figure out why the
You can view the actual page here: http://cjsf2.ncra.ca/test/jQuery/jQuerytest.html