Hi all,
I am working on a Firefox add-on that listens for DOMContentLoaded
events on the 'appcontent' element. The code to add the listener is
like this:
var ac = document.getElementById('appcontent');
ac.addEventListener('DOMContentLoaded', function (evt) { ... },
false);
This works as expected when Firebug is not turned on. However, when I
do turn on Firebug, my listener function is never called. Is there
anything in Firebug that might cause an extension to not get this
event? Is the way I am registering for the event incorrect, or
interferes with Firebug?
I am using Firefox 3.5.3 on Vista 64-bit. I have tried with Firebug
1.4.2, 1.4.3b1, and 1.5X.0a24 with the same results.
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en
-~----------~----~----~----~------~----~------~--~---