Thanks for answer
Not Macros, but with JavaScript :)
This Macros I already used, but without result
For example:
function search_by_tag(tag_name) {
$('.tc-tiddler-frame').each(function(tiddler_frame) {
var self = this;
var tags_label = $(self).find('.tc-tag-label');
var tags = [];
$(this).each(function(tag) {
var tag_name = $(tag).text().trim();
tags.push(tag_name);
});
console.log(tags);
});
}
I find all tags
What result I want:
When user open tiddler, other tiddlers with same tags close automatically
I don't known how to make that with Macros, so I make it with jQuery
A.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywikidev.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywikidev/7b3300f2-b43f-4b22-b8b2-111c4625eb97%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.