Catfish
Catfish

Reputation: 19294

jquery .datepicker is not a function (although I know it is)

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

Answers (2)

Kai Qing
Kai Qing

Reputation: 18833

Change $('#checkIn').datepicker() to jQuery('#checkIn').datepicker()

Upvotes: 1

Cory House
Cory House

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

Related Questions