Mercurial > my-ubiquity-commands
view random-stuff/status-bar-widget.js @ 21:e82bff1ef296
Changed code to be more html-like than JS-ish.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Thu, 07 May 2009 15:26:40 -0700 |
parents | a07982ba7259 |
children |
line wrap: on
line source
$(window).ready( function() { $("#text").text("Click me!"); $("#text").click( function() { $("#text").fadeOut(function() { $("#text").fadeIn(); }); }); });