view random-stuff/status-bar-widget.js @ 22:ecd868a32247

better error logging, streamlined example
author Atul Varma <varmaa@toolness.com>
date Thu, 07 May 2009 15:42:53 -0700
parents a07982ba7259
children
line wrap: on
line source

$(window).ready(
  function() {
    $("#text").text("Click me!");
    $("#text").click(
      function() {
        $("#text").fadeOut(function() { $("#text").fadeIn(); });
      });
  });