Reputation: 19294
I'm having a real problem tracking down why i'm getting the error "$("#checkIn").datepicker is not a function" on the link below. You should see the jquery ui calendar when you click either of the input's, or the calendar buttons.
I can see in the net panel of firebug that everything's loaded correctly so i'm not sure what the deal is.
--link removed--
Upvotes: 0
Views: 977
Reputation: 18833
Change $('#checkIn').datepicker() to jQuery('#checkIn').datepicker()
Upvotes: 1
Reputation: 15045
You're running an old version of jQuery with a much newer version of jQueryUI. May or may not solve your problem but I'd suggest fixing that first.
Upvotes: 1