Where have all the mailboxes gone?

This morning, I stopped at Almaden Plaza on the way into work to grab a cup of decaf from Starbucks and to drop a check in the mailbox there (I don’t leave checks in my mailbox at home any more for fear of theft). I failed in both missions.

The decaf of the day at Starbucks was Decaf Verona Blend; I don’t like the regular Verona Blend, and didn’t think the decaf would be an improvement.

And the mailbox across the parking lot was gone — there was still a UPS dropbox, but the mailbox vanished with no forwarding address. You’d almost think the Post Office didn’t want people to mail things any more….

*sigh*

Today’s technical tidbit

The following code fragment works fine in Firefox but fails in IE:

myform.appendChild(tags);
tag = document.createElement("input");
tag.name = "button";
tag.value = "Tag";
tag.type = "submit";

But reordering it to set the type before the value works fine in both browsers. To play it safe, I decided to set the type immediately after creating the element.

myform.appendChild(tags);
tag = document.createElement("input");
tag.type = "submit";
tag.name = "button";
tag.value = "Tag";