I'm working on a website, and using jQuery to display pop-ups.
When clicking on an article on the website, it should load a pop-up. The following code is used for that purpose:
var popup = jQuery(this).attr('rel');
jQuery('.window').append("http://www.perimetro.com.ar/-previa/"+popup+"");
jQuery('.adentro').load(popup);
...but the pop-up is blocked and this error appears in the firebug console:
Use of getAttributeNodeNS() is deprecated. Use getAttributeNS() instead
What's going on here?
A ticket was opened with jQuery about the warning that is displayed in the console. The short of it is that the jQuery team doesn't believe it's them causing the issue, but the firebug console itself.
If your popup is blocked it's probably due to the way you're launching it, or the browser is blocking it from opening.
UPDATE: There are various questions and bug reports associated with this issue at various places; the comments and discussions taking place may help shed some light on the OP's question:
This is neither a problem with FireFox, nor a fault in jQuery. It's a DOM interface issue, due to breaking changes in DOM level 4 API.
See this post for additional information:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With