Posted in Technicalon Sep 26, 2006
A while ago there was a contest for creating 30 second videos to promote Firefox. This is one of my favorite videos (linked) that came out of the contents.
I really just liked it because it seemed very professional and very well done.
I encourage everyone to use Firefox all the time. You can download it by clicking on the link on this page.
Posted in Technicalon May 3, 2006
I’ve been enjoying Firefox Flicks for the last couple of weeks. They are short little videos which promote the Firefox web browser. I just saw this one and I thought it was funny:
Oh, and you can download Firefox with the Google toolbar by clicking here.
Posted in Technicalon Feb 20, 2006
I found what seems to be a bug in the Safari web browser recently. The problem occurs when there is a table, and you are trying to find the offsetTop property of a row in that table. I have an example that illustrated the problem when in Safari.
I was programming for Internet Explorer today and found a bug. When trying to run code like this:
td = document.createElement("td");
td.setAttribute("colspan", 2);
IE doesn’t respect the column spanning. Instead, it should be
td = document.createElement("td");
td.setAttribute("colSpan", 2);
Yes, even though attributes are suppose to be case insensitve, they are, in this case
Recent Comments