It works for me on home page but child pages it does not, and inspecting element i see this error:
Uncaught TypeError: undefined is not a function(index):372 (anonymous function)jquery.min.js:2 f.Callbacks.njquery.min.js:2 f.Callbacks.o.fireWithjquery.min.js:2 e.extend.readyjquery.min.js:2 c.addEventListener.B
WHAT!!! did I do wrong? the home page is using a different header than the children, but all code is the same, most any way, and I do see the three lines, but clicking on it does nothing…
Did some digging and the fancybox for images is conflicting with the javascript for the responsive menu.
took out the load code for jquery for fancy box and responsive menu works, now have to fix the lightbox for images
Hi ashley,
You have some bad jQuery code, see below:
var scollHere = jQuery('#homepage-about').offset().top;
This gives you the following console error:
TypeError: jQuery(...).offset(...) is undefined
Please fix this and it should make all your other jQuery work.
Many thanks
Peter
Thanks Peter, not sure how I missed the error.
Hi Ashley,
No problem… It happens to the best of us!
Peter