hi, i’ve been using wp-glossary and when used with other plugins like slideshows that use the # too in the link creation it kinda conflicts with them.
so i asked a buddy to help out and he came up with a solution, by changing the wp-glossary.js file like this:
before
line 39: if( myAlpha.length )
after:
line 39: if( myAlpha && myAlpha.length )
so far it’s still functional and there’s no more conflicts.