> there's no visual indication that the script has run [...] is there
> any way to "animate" the button/label clicking event?
If I recall correctly, InlineJavascriptPlugin provides a "place"
variable for the button - so you could do something like this:
jQuery(place).fadeOut(function(ev) {
jQuery(this).fadeIn();
});
Instead of fadeOut/In, you might use slideUp/Down, or add a class, or
perhaps some custom animation*.
Ideally, the reset (in this case, fadeIn) would be triggered at the end
your script.
-- F.
* http://api.jquery.com/category/effects/
--
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.