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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.