jQuery is currently being loaded twice on the page, once by the template, and once by the logic.
It should be loaded only once, either by:
- Detecting whether the particular template in use has already loaded it; or
- By using .noConflict(); note that the method used for CycleStreets.net seems to be best-practice and works well.
jQuery is currently being loaded twice on the page, once by the template, and once by the logic.
It should be loaded only once, either by: