comparison 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
comparison
equal deleted inserted replaced
19:900a2fabd11c 20:a07982ba7259
1 $(window).ready(
2 function() {
3 $("#text").text("Click me!");
4 $("#text").click(
5 function() {
6 $("#text").fadeOut(function() { $("#text").fadeIn(); });
7 });
8 });