> >as long as they are loaded after InlineJavascriptPlugin...
> Newbe-Question:How would I make sure that that is the case?
> Give my plugin/macro a name>="InlineJavascriptPlugin"?
Tiddlers tagged with 'systemConfig' (i.e., "plugins") are processed in
alphabetic order by tiddler title when the document is first loaded.
Thus, to ensure that a given plugin is processed after
InlineJavascriptPlugin, it would need to be named so that it occurs
after that plugin.
However: rather than relying upon InlineJavascriptPlugin to define the
$(...) function, it would be even better to simply copy that function
definition into your own plugin code, so that your plugin does not
depend upon InlineJavascriptPlugin, and can therefore be imported and
installed separately into any document.
In contrast, any tiddlers containing inline scripts (i.e., using the
<script>...</script> syntax to embed code *within* other wiki-
formatted tiddler content) are processed *after* all the plugins have
been loaded. Thus, these tiddler may have any title you like, and
will still be processed after InlineJavascriptPlugin has defined the $
(...) function.
-e