IE8 ではまったく機能していなかった (空白のページが読み込まれる) Web サイトを継承しました。私たちは多くの問題を修正しましたが、IE8 で正しく機能しないホームページの右側にある注目の製品タブが主なもので、いくつかはまだ残っています。Fancybox 1.3.4 を使用しています。
これは、ページ上の元のコードです。
<script type="text/javascript">
$("div.tab").toggle(function(){
$(this).animate({
'marginRight': '230px'
},800);
$(this).removeClass("unselected");
$(this).addClass("selected");
$("div.featured_product").delay(800).fadeIn(800);
},
function(){
$("div.featured_product").fadeOut(800);
$(this).animate({
'marginRight': '-70px'
},800);
$(this).removeClass("selected");
$(this).addClass("unselected");
});
$("a#single_image").fancybox();
</script>