I have read the many posts on this matter and tried all the ways to include jQuery. If I load the jQuery in the xul file and store it in a variable it works. (as in How to use jQuery in Firefox Extension)
jQuery.noConflict();
sbsh.safeWalletUtils.$ = function (selector, context) {
return new jQuery.fn.init(selector, context || doc);
};
sbsh.safeWalletUtils.$.fn = sbsh.safeWalletUtils.$.prototype = jQuery.fn;
However, I suspect that the suggest solution here is much better: http://forums.mozillazine.org/viewtopic.php?f=19&t=2105087
loadjQuery: function(wnd){
var loader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Components.interfaces.mozIJSSubScriptLoader);
loader.loadSubScript("chrome://clhelper/content/jquery/jquery-1.5.js",wnd);
var jQuery = wnd.jQuery.noConflict(true);
loader.loadSubScript("chrome://clhelper/content/jquery/jquery.hoverIntent.js", jQuery);
return jQuery;
},
in Page Load event handler: var doc = event.originalTarget; var wnd = doc.defaultView; // load jQuery and save it as a property of the window myprivatejQuery = loadjQuery(wnd)
However I keep getting wnd.jQuery undefined..(few people in the link also said that was the problem)
What should I do? How do I use jQuery and not worry about conflict inside a Firefox extension?
Thanks! Dory.
$orjQueryvariables are already namespaced before you do any of the above. – Ohgodwhy Dec 4 '12 at 18:09