Is there a way to include a javascript file to a XBL instead of copy all the script to it?

link|improve this question

@epascarello interesting.. if I use the src of the implementation I can't access the script functions from the handler tag. And if I use the src attribute of handler, and put all my code there, looks like the 'this' reference is not the same as before... – Tom Brito Sep 24 '10 at 19:09
feedback

3 Answers

I believe it is:

<xbl:script src="/xbl/foo/bar/myScript.js"/>
link|improve this answer
I was thinking of the implementation in xforms I believe. – epascarello Sep 24 '10 at 18:13
+1 It is defined, but I'm having no success to use it.. maybe for Mozilla it is not implemented (as it is only docummented on the w3, but not on Mozilla Developer Network) – Tom Brito Sep 24 '10 at 18:38
feedback
up vote 0 down vote accepted

I found that I need to add it to the Xul file, so I can use it in the XBL.

link|improve this answer
feedback

If you only need to run the script once and it doesn't need to access your document (i.e. it just defines methods) then the easiest way is to turn it into a module, see https://developer.mozilla.org/en/Components.utils.import but if you need the script to run once per element then you will need to use the subscript loader (see the link from the above page).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.