function ShowColoursScreen() {
setSquaresList()
$("#ModeOne").hide();
$("#ModeTwo").show();
setTimeout(function () {
$("#ModeOne").show();
$("#ModeTwo").hide();
setTimeout(function () {
ShowColoursScreen();
}, 1500);
}, 15000);
}
This is very very weird, Im wanting to rotated between two divs every 15 seconds (i dont want to use js intervals). However after the first fifteen seconds ShowColoursScreen(); runs without waiting the second 15 seconds (if that makes sense). Its like the timeout gets ignored, any ideas?
1500 != 15000. – DCoder Nov 12 '12 at 12:06$("#ModeOne").hide(15000, function() {...});– Mic Nov 12 '12 at 12:07$("#ModeOne").delay(15000).show(1);– adeneo Nov 12 '12 at 12:10