html タグの上に doctype を追加すると、Jquery コードが IE8 で動作しないようです。
これらのコードを ie8 で動作するように再構築する方法があるかもしれません。
$(document).ready(function(){
//Caption Sliding (Partially Hidden to Visible)
$('.boxgrid.caption').hover(function(){
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'161px'},{queue:false,duration:160});
});
});
The website can be seen here:
http://www.keencloudmedia.com/sample/test.html
前もって感謝します!