Reply to thread

Actually, I've just found a fix for this, it's a bug in jQuery Tools where they forgot to add quotes around an attribute selector:

https://github.com/jquerytools/jquerytools/pull/596

https://github.com/neutroncreations/jquerytools/commit/3f29890586b0d7cba0057d2368b7f8ab496d1f61

 

Fixing this simply involved finding this in the jquery.tools.min.js file used by Xenforo:

[code]c.find("[href="+location.hash+"]")[/code]

and adding single quotes around the location.hash:

[code]c.find("[href='"+location.hash+"']")[/code]


Back
Top Bottom