Skip to content Skip to sidebar Skip to footer

Call Jquery Function After Page Load Not Working - Firefox Extension

I've been working on Create Firefox extension. i can inject some js file for all webpages. this function works fine. codevar myExtension = { init: function() { // The e

Solution 1:

To interact with the page in addon-sdk, you have to use a content script. and you can use jquery on those, but not the way are using it. See Content Scripts


Post a Comment for "Call Jquery Function After Page Load Not Working - Firefox Extension"