Reputation: 15481
Here is the code from my project where I am using a datepicker. The jQuery menubar works but the datepicker doesnt. What am I missing? Also, how do I get the menubar center aligned?
Upvotes: 0
Views: 165
Reputation: 461
You are not loading jquery.ui.datepicker.js
Add the following line after loading jquery.ui.core.js
<script src="http://view.jqueryui.com/menubar/ui/jquery.ui.datepicker.js" type="text/javascript"></script>
See Updated jsfiddle (fixed): http://jsfiddle.net/CcjPh/
Note: You should probably download the jQuery files and host them yourself rather than using jqueryui.com / jquery.com as a source.
Upvotes: 3