Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
please specify the version(s) of IE which you're testing with. it makes a big difference. – Spudley Jul 10 '11 at 16:32
only tested in IE8 – CalumMc Jul 10 '11 at 16:36

1 Answer

Try putting all your javascript within $(document).ready(function(){ ... }

share|improve this answer
thanks but that stops the countdown altogether on chromium. – CalumMc Jul 10 '11 at 16:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.