I have a problem with an online quiz game that i'm building for myself and friends. As usual, the problem only occurs in internet explorer (8, only tested in 8) which is a pain because i'm on linux and don't have access to windows. Anyway, I've no idea where the problem lies but, i have a count down clock using jquery. When the clock reaches 0 an iframe reloads and the clock is reset. Problem is that in IE the clock doesn't reset and from there on the iframe won't reload.
Script in header:
<script type="text/javascript">
number = 1;
reloadnum = 1;
function link(win,url){
if(url){
$(win+' iframe').attr("src",url);
}
setFocus(win);
}
function countdown() {
var m = $('.min');
var s = $('.sec');
if(m.length == 0 && parseInt(s.html()) <= 0) {
$('.clock').html('<span class="sec">15</span> seconds left.');
number++;
link("#win10","questions.php?q="+number+"");
}
if(parseInt(s.html()) <= 0) {
m.html(parseInt(m.html()-1));
s.html(60);
}
if(parseInt(m.html()) <= 0) {
$('.clock').html('<span class="sec">59</span> seconds left.');
}
s.html(parseInt(s.html()-1));
}
setInterval('countdown()',1000);
setTimeout('reloadUsers()',500);
</script>
HTML:
<div class="clock">
<span class="sec">15</span> seconds left.
</div>
<iframe frameBorder="0" style="width:100%; height:80%;" id="usrs" src="users.php"></iframe>
</div>
<div style="width:60%; height:95%; float:left; border-style:solid; border-color:red; border-width:1px; padding:5px;">
<div id="win10" style="width:100%; height:100%;">
<iframe frameBorder="0" style="width:100%; height:95%;" src="questions.php?q=1"></iframe>
</div>
</div>
Could anyone tell me what's wrong please?
thanks