I added some custom jQuery to the footer static block as documented on Magento Go website:
(function($) {
alert("lol");
})(jQuery);
And this only works on product page. On every other page on the website I get
jQuery is not defined
[Break On This Error]
})(jQuery);
from Firebug. Any ideas how to fix it?
You aren’t loading jQuery correctly on all pages. That is why you are getting the ‘jQuery is not defined’ error.
I’m not as familiar with Magento Go — so you will need to find out why product pages are including the script but other pages aren’t. In a non-hosted solution, this would mean editing a [layout].xml file. Not sure if that helps you.