Button Download With Countdown Timer

by Maz Soma

HTML

<div id="countdown"> </div>

<div id="download"><a href='http://somazing.technetium-tc.com/id-1657686'>Download Rebecca Black now!</a></div>

JavaScript

window.onload = function() {
    var countdownElement = document.getElementById('countdown'),
        downloadButton = document.getElementById('download'),
        seconds = 10,
        second = 0,
        interval;

    downloadButton.style.display = 'none';

    interval = setInterval(function() {
        countdownElement.firstChild.data = 'You can start your download in ' + (seconds - second) + ' seconds';
        if (second >= seconds) {
            downloadButton.style.display = 'block';
            clearInterval(interval);
        }

        second++;
    }, 1000);
}