> <script>
> if (tiddler.isTagged("A Student")) return "A Student";
> </script>
>
> The only thing is, how do I refer to another tiddler and not the one that
> contains this script?
> I want to put this script in several tiddlers and check for the tag on the
> tiddler called "Susan".
<script>
var t=store.getTiddler("Susan");
if (t && t.isTagged("A Student")) return "A Student";
</script>
-e
--
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.