N.B.:
Strictly development-related issues are better discussed on the dev group:
http://groups.google.com/group/TiddlyWikiDev/
You're more likely to get competent help there.
> Can I somehow load external javascript inside my tiddler?
There are several ways you could do this.
For example, you could just put the respective SCRIPT tag into the
MarkupPreHead shadow tiddler:
http://tiddlywiki.org/wiki/MarkupPreHead
Or you could inject the SCRIPT tag dynamically:
http://github.com/fnd/jsutil/blob/master/loadScript.js
Even simpler with jQuery (included since TiddlyWiki 2.5):
var uri = "http://www.google.com/jsapi";
jQuery('<script type="text/javascript">').attr("src", uri).
appendTo(document.body);
HTH.
-- F.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" 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/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---