• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Someone should write this virus

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
IE7 is evil. IE6 is slightly less evil. Both cause me nothing but headaches. A bunch of sites don't even work in IE7, though it is not the fault of microsoft, just lazy coders.
 
Originally posted by: PhatoseAlpha
I'd like that virus, please. If for no other reason then to get translucent .png support that isn't a thrice damned hack.

How does this hack work btw? I've read people doing this so called "hack".
 
Originally posted by: Evadman
IE7 is evil. IE6 is slightly less evil. Both cause me nothing but headaches. A bunch of sites don't even work in IE7, though it is not the fault of microsoft, just lazy coders.

you call them lazy, I just call them bad.

There are waaay too many folks out there who do not know how to code properly.

 
What I miss about IE6 is the FTP integration. IE7 doesn't allow me to do folder view....

I think IE6 is still somehow integrated in the base OS. I can switch to any folder in XP and type an FTP address in the bar and get my old folder view.
 
There are a lot of common core components, from the Explorer view to the sockets layer.
 
Originally posted by: mjuszczak
Originally posted by: PhatoseAlpha
I'd like that virus, please. If for no other reason then to get translucent .png support that isn't a thrice damned hack.

How does this hack work btw? I've read people doing this so called "hack".


As I recall, it involves a javascript that on the onload event of a page:

A) Tests to see if it's running in IE6
B) If it is, it looks through the entire DOM of the current page looking for images
C) If it finds an image that is a png, it replaces the png with a transparent 1x1 gif, sets the background of the image element to the png file it originally was, and then applies the DirectX filter to the background of that element.


The function below requires a global variable blankSrc, which is the string of the url to the 1x1 gif. If only fixes a png to display right - the searching is done easily enough with a DOM traversal.

function fixImage(element)
{
if (!element.runtimeStyle || (typeof document.body.style.maxHeight != "undefined")) return;
var src = element.src;
if ( /\.png$/.test( src.toLowerCase() ) )
{
element.src = blankSrc;
element.runtimeStyle.filter = "progid😀XImageTransform.Microsoft.AlphaImageLoader(src='" +
src + "',sizingMethod='scale')";
}
else
{
element.runtimeStyle.filter = "";
}
}



I'd give you the link to the source, but TBH, I've forgotten the source.
 
my ie browser is ie8 (beta). it is another step in the right direction, and the developer tools can be more helpful than the firefox tools
 
Originally posted by: Crusty
Originally posted by: jjones
I'm curious about this. I still use IE6. Why should I switch to IE7?

Has a lot more security features, like a built in anti-phishing filter, improved popup blocker, and overall better javascript support.

If you are going to be upgrading your web browser, I would just go straight to Firefox 😉

most web developers also hate ie6 because at least ie7 runs in standards compliant mode by default.

ie6 has lots of "special" ness for it.
 
The big problem I have with IE7 is how much of a memory hog it is. I mean, people give firefox a bad time, but IE7 is worse by far. (Ok, It might not leak as bad, but I did see a review which placed it as the top memory user, I think on slashdot)

Right now I am using firefox 3 Beta 5 and loving every minute of it. I have had few problems with it, and it seems faster then firefox 2 (which is impressive IMO)
 
Back
Top