In the head, after the external script tag for jQuery, add this script:
Code:
<script type="text/javascript">
jQuery(function($){
var ie = /MSIE (\d+)/.exec(navigator.userAgent);
ie && ie[1] && $('table:eq(1) >tbody >tr >td[rowspan="3"]').css({height:$('table:eq(1)').height()});
});
</script>
That might not work, if not, this should do the trick:
Code:
<script type="text/javascript">
jQuery(window).load(function(){
var ie = /MSIE (\d+)/.exec(navigator.userAgent);
ie && ie[1] && jQuery('table:eq(1) >tbody >tr >td[rowspan="3"]').css({height:jQuery('table:eq(1)').height()});
});
</script>
Bookmarks