The code below runs well in chrome and ff, but the content in #cf_intro would not change with the timer in IE. (‘Flow’ is a plugin object.)
timer=setInterval("m2n()",10000);
function m2n()
{
Flow.moveTo("next");
var activeItemIntro=$('.active canvas').attr("intro");
$("#cf_intro").html(activeItemIntro);
}
$(function(){
function cf_timer(){
timer=setInterval("m2n()",10000);
}
$('.flow').mouseover(function(){
clearInterval(timer);
})
$('.flow').mouseout(function(){
cf_timer();
})
})
I see you’re using canvas..
Canvas are only in HTML5 which means higher versions of Firefox, Chrome and IE9 (major browsers)
If you have IE8, it won’t work