Hide Div after Countdown Expired using javascript

This div will hide after above count down expired! The other important concept is to hide the particular div when the count down ends. This is very useful some places in website, for example if you set the registration last date countdown. After countdown expired the particular registration form should hide, so that types of situation you can use this concept. 

In this example i given 10 seconds for countdown after 10sec the exp_div will be hide based on javascript hide() function. This is working fine, The particular .count1 div will hide end of the countdown. Here i provided full code and live demo page for your reference. I hope this simple java script is really helpful to you. 



Code for Hide div after Count-down Completed:

<!DOCTYPE html>
<html>
<head>
<title>Hide div when Countdown Expired</title>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="http://momentjs.com/downloads/moment.js"></script>
<script src="http://cdn.rawgit.com/hilios/jQuery.countdown/2.0.4/dist/jquery.countdown.min.js"></script>
<style>
#exp_div
{
padding:55px;
border:1px solid #ff5a00;
background-color: #ff8400;
color:#fff;
font-size:18px;
width:400px;
}

.count1
{
font-size:22px;
margin:30px;
text-align:center;
font-weight:bold;
color:#ff8400;
}

.container
{
width:500px;
margin:0 auto;
display:block;
}
</style>

</head>

<body>
<div class="container">
<div class="count1"> </div>
<div id="exp_div">
This div will hide after above count down expired!
</div>
</div>
<script>
$(document).ready(function () {
var nowPlus30Seconds = moment().add('10', 'seconds').format('YYYY/MM/DD HH:mm:ss');

$('.count1').countdown(nowPlus30Seconds)
.on('update.countdown', function (event) { $(this).html(event.strftime('%Y : %D : %H : %M : %S')); })
.on('finish.countdown', function () { $('#exp_div').hide(); });
});
</script>
</body>
</html>

Post a Comment

0 Comments