Upcoming Events

March 5, 2008

Just what we needed, another version of standards-incompliant IE to support. Yet, here it is, in all it’s terrible glory. This release apparently just playing feature-catch-up with Firefox, so one begins to wonder just what the point is. Like, why waste all this development money on a free application that is vastly inferior to the competition.

Anyway, if you’re a developer and want to get a head start on creating all those hacks and alternate stylesheets, you can download the beta here: IE 8 Beta. (Windows only)

Note: This will overwrite any existing installation of IE.

October 17, 2007

So I’ve been playing with Scriptaculous a bit, and doing some debugging. I have a table, in which certain rows would should appear when a link is clicked. I’ve got it set with a display:none by default and I’m using Effect.SlideDown to have it appear. Now due to how display and opacity on tables, trs, and tds are handled by just about every browser, there were several unexpected results.

(more…)

August 3, 2006

IE tends to do some funny things with its security settings. In particular, if your settings are high enough, window.close() will throw a warning or silently stop working entirely. This is definitely not our preferred behavior, and luckily, there’s an easy hack provided by FatTonny on the SitePoint Forums.

window.opener = window;
window.close();

That’s all there is too it! Happy coding!