Need help w/jQuery UI and themes
Hello,
I'm trying to get started with my first jQuery UI project. I want to use the datepicker widget but am having problems getting any theme picked up at all.
I included the following code in my page:
-
<link href="/stylesheet/ui-lightness/ui.all.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/js/jquery-ui-1.5.3.custom.min.js"></script>
<script language="JavaScript">
$(document).ready(function() {
$("#datepicker").datepicker();
});
</script>
(and in the body)
Date: <div id="datepicker"></div>
The ui-lightness and custom ui code was downloaded from the jQuery UI site.
The datepicker is rendered but it looks terrible--like it didn't pick up all of the css or something.
What am I missing?
Greg