[Solved] jQuery conflict? or something else? [closed]


Line 219 of wpdev.bk.js:

jQuery('#calendar_booking'+ bk_type).datepick(

.datepick doesn’t exist when called: that’s what’s crashing your code.
Possible reason: you’re currently calling .datepick before you’re including the plugin. Make sure wpdev.bk.js is included after the plugin.

7

solved jQuery conflict? or something else? [closed]