Care to count down with me?
Around July of last year I redesigned my blog, but I forgot to include my “Countdown to the (S)election” JavaScript in the new design. I see that Bob Harris over at This Modern World has been getting people interested in these again, so here’s mine:
<script language="JavaScript" type="text/JavaScript">
<!--
\tfunction BushOut() {
\t\tvar oneDay = 1000 * 60 * 60 * 24;
\t\tvar today = new Date();
\t\tvar election = new Date("November 2, 2004");
\t\tvar difference = election.getTime() - today.getTime();
\t\treturn Math.ceil(difference/oneDay);
\t}
document.write(BushOut() + " days until the (s)election.");
// -->
This script will count down the number of days remaining between now and the November 2 election that will decide whether the American people are willing and able to restore sensible governance to the United States. Feel free to make use of it if you like. Just copy the script as you see it above and paste it into the location where you would like it to be displayed on your page(s). This is what it looks like when displayed in a JavaScript-capable browser (nearly all of them):
Also, the following logo is not mine, but I have the creator’s permission to distribute it as widely as possible, so feel free to use it too.

Post a comment
Commenting is not available in this weblog entry.