Breaks when anchor on page since anchors have no "href" attribute. In linkpopup-all.js and perhaps linkpopup.js, this:
if($(this).attr('href').match('http://')) {
needs to be changed to something like this:
if($(this).attr('href') != null && $(this).attr('href').match('http://')) {
Comments
Comment #1
silviogutierrez commentedGood call. I'll patch it soon.
Silvio