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

silviogutierrez’s picture

Good call. I'll patch it soon.

Silvio