IE – Worst Hack
Feb.04, 2011 in
Uncategorized
What is the worst hack you’ve had to make for IE? It could be anything, worst as far as most lines it took, sacrificing functionality, anything. Tell us your stories!
P.S. Want to write a post for I Hate IE? Send an email to iwanttoblog@ this domain and we’ll talk! Let’s get this site some content!

February 22nd, 2011 at 12:00 pm
Sometime when you insert content in DOM, the elements below does not move downward and you have hide and show or trigger window.resize to move the element to its actuall position.
i use something like (in jQuery)
if($.browser.msie && $.browser.version == ’7.0′)
{
$(window).trigger(‘resize’);
$(‘#atWelcomePanel, #atMap, .atModule’).hide().show();//fixing ie error
}
June 17th, 2011 at 9:35 pm
Using an external CSS file instead of block CSS.
Span class tags.
August 10th, 2011 at 7:05 pm
IE explorer 6 blocks all iframes. Even ones requested by the client. I spent a few days learning ajax (5ish) before finally being able to make a form that would log someone in to two places at the same time. T_T.
June 26th, 2012 at 6:46 pm
@Charlie – that is hilarious bro!
I came here to cry about all my includes having *+html. Instead I laughed. Thanks you guys!
February 1st, 2013 at 2:55 pm
I used a conditional(if lower than ie8) triggering a javascript confirm box with a message something like “this site will not work correctly using this browser, click ok to download firefox…”.
i really hate IE.