Archive for November, 2005

flat tire monitor

Wednesday, November 30th, 2005

Driving to work this morning I noticed a flashing warning lamp on the dash. According to the Owner’s Manual, “the warning lamp indicates a flat tire or system malfunction. In the event of a flat tire, an acoustic signal also sounds.” My iPod Nano was playing at the time the lamp illuminated, so I wasn’t […]

Multiple onLoad commands in <body>

Monday, November 21st, 2005

This is something I find myself looking to do every now and then. It’s not really good practice to take control of the end-user’s web experience, but if you need the code, here it is:
&lt;body onload=”function#1();function#2();function#3();”&gt;&lt;/body&gt;
All you have to do is separate each function with a semi colon and you’re done.