Posts tagged Web Design
IE: Sucking Hard Since Version 5
Jul 9th
This code (extracted from a javascript file) works in every major browser except IE (including IE8):
$('a[rel*=fancybox]').fancybox({ 'frameWidth' : 500, 'frameHeight' : 465, 'hideOnContentClick' : false, 'centerOnScroll' : true, });
This is the fix:
$('a[rel*=fancybox]').fancybox({ 'frameWidth' : 500, 'frameHeight' : 465, 'hideOnContentClick' : false, 'centerOnScroll' : true });
See the difference? Yeah, neither did I. The difference is the last comma in the argument list.
That’s 3 consecutive major versions of IE that have been absolutely crap. Why anyone continues to use IE is beyond me. IE: sucking hard since version 5.
What The Heck is Wrong With Microsoft
Jun 23rd
This is what’s wrong with Microsoft. I saw that Microsoft Expression beta was released for Mac. I thought to myself, “which one is Expression again?” So I checked it out. After checking out the website, you tell me — WTF does this program do?

click on the pic for an enlarged view
This is terrible web design. Not only do I not know what the product does, I’m supposed to know which edition to click on to find out. Instead, I said “screw it” and I’m not going to bother with this thing. Microsoft is so out of touch with technologists it’s crazy.

