I have some code to make sure these two divs with id’s content and txtCotent are the same height.
<script language = "javascript" src = "js/jquery.js"></script>
<script>
$(document).ready(function () {
var h = $('#wrapContent#').css('height');
$('#content, #txtContent').css('height', h);
});
</script>
Any ideas as to why this wouldn’t work in IE? Here is the link … http://students.uwf.edu/bmg17/workshop/index.cfm
Try:
EDIT: Changed to
height()instead ofcss('height').