Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
    <script src="https://code.jquery.com/jquery-2.1.4.js"></script>
    <meta charset="utf-8">
    <title>Foros del Web - Countdown</title>
</head>
<body>
    <div class = "foo"></div>
    <div class = "foo"></div>
    <div class = "foo"></div>
    <div class = "foo"></div>
    <div class = "foo"></div>
</body>
</html>
 
.foo{
    width: 200px;
    height: 75px;
    background: red;
    margin-bottom: 5px;
}
 
$(document).ready(function(){
    var divs = $(".foo"),
        total = divs.length,
        i = 0,
        countdown = setInterval(function(){
            $(divs[i++]).fadeOut();
            if (i == total){
                clearInterval(countdown);
            }
        }, 1000);
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
Alexis88pro
0viewers