What are you calling in SPServices? Are you referencing jQuery first?
There's a bug in 2013.02a with SharePoint 2010. I goofed in using L_Menu_BaseUrl the way I did.
If you change line 3678 from this:
to this:
you should be all set.
M.
There's a bug in 2013.02a with SharePoint 2010. I goofed in using L_Menu_BaseUrl the way I did.
If you change line 3678 from this:
this.thisSite = L_Menu_BaseUrl;
this.thisSite = (typeof L_Menu_BaseUrl !== "undefined") ? L_Menu_BaseUrl : "";
M.