IE8のブートストラップカルーセルサポートを変更しています。これはchromeとFFで動作しますが、IE 8では動作しません。フェードインしなくても変わります。JQuery addClass fadeIn fadeOutがIE8で動作しない
<style>
.carousel .activerow {display: none;}
.carousel .row { left: 0; opacity: 1; }
</style>
/*I have many rows of data in the dom
They are not visible until'active' class
is added.
This code is binded to a link
*/
var activeset = $active; //contains the contents of current row
var nextset = $next; //contains contents of the next
$active.fadeOut('slow', function() {
activeset.removeClass('activerow');
nextset.addClass('active');
nextset.fadeIn('slow');
});
あなたのコンソールに何かが表示されますか? – Sampson
コンソールでエラーが発生していない – River