I am trying to load an external javascript (jquery) via my Firefox addon to a third-party webpage, WebDeveloper addons shows the jquery script syntax getting successfully appended to the head section in "View Generated Source" but the script is not getting executed/fetched ?, I am using the following code in my addon to load the script :
function loadjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
var fileref=document.createElement('script')
fileref.setAttribute("type","text/javascript")
fileref.setAttribute("src", filename)
fileref.setAttribute('onload', 'firefoxInit()');
}
else if (filetype=="css"){ //if filename is an external CSS file
var fileref=document.createElement("link")
fileref.setAttribute("rel", "stylesheet")
fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", filename)
}
if (typeof fileref!="undefined")
document.getElementsByTagName("head")[0].appendChild(fileref)
}
Pls. guide how to move forward.
filerefin the lastifstatement, as it's declared in the firstif-elsescope.. But doubt that's the answer you're looking for ;) – Thor Jacobsen May 26 '11 at 9:18