Mercurial > my-ubiquity-commands
diff random-stuff/status-bar-widget.js @ 20:a07982ba7259
Added random stuff.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Wed, 06 May 2009 09:20:13 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/random-stuff/status-bar-widget.js Wed May 06 09:20:13 2009 -0700 @@ -0,0 +1,8 @@ +$(window).ready( + function() { + $("#text").text("Click me!"); + $("#text").click( + function() { + $("#text").fadeOut(function() { $("#text").fadeIn(); }); + }); + });