This has got me baffled. I’m sure the solution is obvious, but I can’t figure it out for the life of me.
All of the files are getting included correctly, and in the right order. I tried just removing the validation completely, just to see what would happen, and then started getting:
jQuery.easing[jQuery.easing.def] is not a function
…but only on this one page.
Can anyone offer any insights?
The page is at http://www.hotspring.co.nz/request-info/
You’re loading two different versions of jQuery:
One of them ends up as
$()and doesn’t have validate installed, the other ends up asjQuery()and does have validate installed; in particular,$()ends up as jQuery 1.5.2 andjQuery()ends up as 1.4.4. Open up a JavaScript console on your site and look at these:The solution is to just include one jQuery library.