I have the code below. IE8 displays a smaller height. The difference is over 100 pixels. It works fine in FireFox. Why doesn't it work right in IE?
<html>
<body>
<script type="text/javascript" src='<%=ResolveUrl("~/includes/jquery-1.4.2.min.js") %>'></script>
<script type="text/javascript">
window.onresize = ff;
function ff()
{
window.status = jQuery(window).height() ;
}
</script>
</body>
</html>