[jQuery] Possible IE problem with animate() and overflow?
Hi there,
are there any known issues with IE (6 & 7) and animate()?
I tried something like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test</title>
<script type="text/javascript" src="jquery.pack.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#foo").animate({"overflow" : "auto"}, "fast");
});
</script>
</head>
<body>
<div id="foo" style="overflow:hidden;">Foobar</div>
</body>
</html>
and the IE throws an error:
"Could not get the overflow property. Invalid argument"
FF works fine.
What am I doing wrong?
TIA
ezod