Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Where is your code? – Tarik Jul 29 '12 at 22:22
Here: jsfiddle.net/Wwqpq – rad Jul 29 '12 at 22:25
It looks messed up. But it seems your added libraries don't have datepicker defined. Please check them. – Tarik Jul 29 '12 at 22:38

1 Answer

up vote 3 down vote accepted

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.

share|improve this answer
Sorry, its not working in the fiddle that you posted. – rad Jul 30 '12 at 3:27
1  
For some reason jQuery did not allow linking from that file to jsfiddle. It was returning an HTTP 403 error. Please see updated jsfiddle: jsfiddle.net/CcjPh – Brandon Jernigan Jul 30 '12 at 6:14
Thank you so much! Could you please help me in getting the menubar center aligned? I tried it but it dint workout. – rad Jul 31 '12 at 15:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.