Jump to content

setTimeOut won't halt code


purencool

Recommended Posts

Hi phpfreaks,

 

I have been playing around with JavaScript and prototype. But for some

reason I can't get this code to stop dead and wait for SetTimeOut

I my brain is now hurting. I know that  the method is calling itself but

how do I get to wait a few milliseconds. Does anyone know?

 

            fadingImagesIn.prototype.timer =function(){

                        this.timerStart('logoDiv1',11,0);
            }

            fadingImagesIn.prototype.timerStart =function(id ,timeMax,timeMin){
                //fire timer
                
                if (!(timeMin >= timeMax) ){
                    setTimeout ( "alert('wow')", 10);
                    //alert(id +" "+timeMax +" "+ timeMin)
                    document.getElementById(id).style.visibility = 'visible';
                    document.getElementById(id).style.MozOpacity = timeMin/10;
                    timeMin++;
                    this.timerStart(id ,timeMax,timeMin)
                   //call self
                }

            }

Link to comment
https://forums.phpfreaks.com/topic/188515-settimeout-wont-halt-code/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.