I was inspired my Micheals trails and wanted them in TW. This is what FND
came up with;

Alex

mURL plugin
/***
<<mURL "http://google.com"; "http://tiddlywiki.com"; "http://tiddlywiki.org";>>
***/
//{{{
(function($) {

config.macros.mURL = {
  handler: function(place, macroName, params, wikifier, paramString,
tiddler) {
    var container = $('<div class="mURL" />').appendTo(place);
    $.each(params, function(i, item) {
      var callback = function(ev) {
        var url = $(this).attr("href");
        $("iframe", container).attr("src", url);
        return false;
      };
      $("<a />").attr("href", item).text(i).click(callback).
        appendTo(container);
    });
    var el = $("<iframe />").appendTo(container);
  }
};

})(jQuery);
//}}}

2009/11/7 Eric Shulman <[email protected]>

>
> > So that you don't lose any of the ability to open multiple tiddlers at
> > once, but you can still "follow a trail/follow a train of thought" as
> > it were, sniffing the roses of information along the way.
>
> > And they would be displayed in sequential order: tiddler1, tiddler2,
> > tiddler3, via the next, previous button and yet you could still click
> > the links to other tiddlers within them.
>
> Try this:
>   http://www.TiddlyTools.com/#FAQViewerPlugin
>
> enjoy,
> -e
>
> >
>


-- 
http://www.multiurl.com/g/64

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