> I would like to start a little script before the DefaultTiddlers tiddler
> starts, because the script adapts the DefaultTiddlers

Just write a simple plugin*, i.e. add your JavaScript code to a tiddler 
tagged with "systemConfig" (no need for the InlineJavascriptPlugin there).

You shouldn't be using document.write though. Create an element instead, 
e.g. by using jQuery (from v2.5.0):
     jQuery('<div id="myMessageContainer" />').text("my message").
         appendTo(document.body);

Alternatively, you might use the built-in displayMessage function.


-- F.


* http://tiddlywiki.org/wiki/Plugins

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to