[thelist] newbee

Martin martinmc116 at austin.rr.com
Tue Mar 18 20:57:16 CST 2003


Joshua,
Thank you!
Martin
----- Original Message -----
From: "Joshua Olson" <joshua at waetech.com>
To: <thelist at lists.css-discuss.org>
Sent: Tuesday, March 18, 2003 9:19 AM
Subject: re: [thelist] newbee


> ----- Original Message -----
> From: "Martin" <martinmc116 at austin.rr.com>
> Sent: Friday, March 14, 2003 5:18 PM
>
>
> > make a flashing greeting in the status bar.  I get the status bar to
> display the greeting, but i don't get how to/what to use as the
conditional
> to have the message turn off, then back on continuously.
>
> Martin,
>
> var status_on = false;
>
> function flash()
> {
>   if(status_on)
>     window.status = '';
>   else
>     window.status = 'Hello, world.';
>
>   status_on = !status_on;
> }
>
> setInterval('flash()', 1000);
>
> HTH,
>
> -joshua
>
> P.S.  www.irt.org is an excellent resource for this tiny "how do I do this
> trick?" type of scripts.
>
>
> --
> * * Please support the community that supports you.  * *
> http://evolt.org/help_support_evolt/
>
> For unsubscribe and other options, including the Tip Harvester
> and archives of thelist go to: http://lists.evolt.org
> Workers of the Web, evolt !



More information about the thelist mailing list