http://jquery-hello.tiddlyspot.com/#JQueryHelloPlugin
(Presuming you know a little bit of pre-jQuery TiddlyWiki here, for example I haven't even put in all the macro handler params).
See it in action...
/***
<<jQueryHello>>
***/
//{{{
(function($){
$.extend(config.macros,{
jQueryHello: {
handler: function(place) {
createTiddlyButton(place, "click me", "click me", function() {
$(place).parent("div.tiddler").hide("slow").show("slow"); // woah
$(place).append("We're not in kansas any more, Toto.<br>");
});
}
}
});
})(jQuery);
//}}}
No comments:
Post a Comment