If there was ever a time to hate IE, this is it. This code begins with a box with content. When the button is clicked, the box is supposed to drop down and fade-in.

<html>
<script type="text/javascript" src="jquery.js"></script>
<script type='text/javascript'>

function Test()
{
  var item_height = $('#test').height();
  $('#test').height(0);
  $('#test').css('opacity','0');

  $('#test').animate({ height: item_height, opacity: '1' },400);
}

</script>
<body>
<!-- The div below holds the sample content -->
<div id="test" style='border: 1px solid black;'>
  Content<br>
  Content<br>
  Content<br>
  Content<br>
  Content
</div>
<!-- The button to test the animation -->
<br><br>
<div style='position: absolute; top: 150px; left: 10px;'>
  <button onclick='Test();'>Test</button>
</div>
</body>
</html>

This very simple example works on Chrome, Safari, and Opera. But Internet Explorer? No.

How can I (if it's even possible) fix this so that it works in IE?

link|improve this question

4  
What happens or doesn't happen? In what IEs have you tested it? Have you tried adding the required <head></head> tags? – Pekka Apr 21 '10 at 22:00
Guess I just ignored these because I thought they weren't important. Forgot about the DOCTYPE. – George Edison Apr 21 '10 at 22:30
feedback

2 Answers

up vote 5 down vote accepted

Because you are missing the <head> tag and doctype declaration, your page is being rendered in Quirks Mode. Change this

<html>

to this

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
link|improve this answer
That works too... heh-heh... Now I better delete the comment I made over on the jQuery docs. – George Edison Apr 21 '10 at 22:27
Uh-oh. It won't let me. If anyone from the jQuery docs reads this - I am sorry: I can't figure out how to delete comments there. – George Edison Apr 21 '10 at 22:28
feedback

I assume what you mean is that in IE, the item's height won't change. The element's height doesn't seem to get set to 0 properly. It works in my IE8 when I change

$('#test').height(0);

to

 $('#test').height(1);

I don't know why this is. The documentation on height() does not mention any IE specific quirks.

link|improve this answer
Thanks. Setting the height to 1 does indeed fix the problem. I should probably comment on this in the jQuery docs. – George Edison Apr 21 '10 at 22:20
its interesting that .height(0) doesnt work in Quirks Mode – Yisroel Apr 21 '10 at 22:44
Ya, that is quite strange. – George Edison Apr 21 '10 at 23:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.