IEProblemTest
HTML
<body>
<section id="test">Test</section>
<code id="output"></code>
</body>
CSS
html, body {
height: 100%;
}
section {
min-height: 50%;
background-color: red;
border: 1px;
}
JavaScript
$(document).ready(function() {
var test = $("section").css("min-height");
$("code").append("" + test);
});