Post Reply 
Megaupload Captcha and Download Link
Mar. 21, 2009, 04:33 PM (This post was last modified: Mar. 21, 2009 04:33 PM by Graycode.)
Post: #5
RE: Megaupload Captcha and Download Link
They may have removed the blanks that used to surround the '=' assigning the initial count value. Maybe they saw this thread Sinister

Code:
    count=46;
    
    function countdown()
    {
        if (count > 0)
        {
            count--;
            if(count == 0)
            {
                document.getElementById('downloadlink').style.display = '';
                document.getElementById('downloadcounter').style.display = 'none';
            }
            if(count > 0)
            {
                document.getElementById("countdown").innerHTML = count;
                setTimeout('countdown()',1000);
            }
        }
    }
    
    countdown();

Their captchas are tough - most of the time my eyeballs can't figure out what their value is.
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Megaupload Captcha and Download Link - Graycode - Mar. 21, 2009 04:33 PM

Forum Jump: