How to create countdown time which appears before download button
-
How to create countdown time which appears before download button
I want to add countdown timer before my download button anybody know how to do it please help me on internet i found only one site useful but its not working anymore!!
please help me how to make countdown timer or please tell me errors in this code.
<script type=”text/javascript”>
jQuery(document).ready(function() {
var sec = 30
var timer = setInterval(function() {
$(“#mdtimer span”).text(sec–);
if (sec == 0) {
$(“#makingdifferenttimer”).delay(1000).fadeIn(1000);
$(“#mdtimer”).hide(1000) .fadeOut(fast);}
},1000);
});
</script>
<center>
Download
</center>
<div id=”mdtimer”>
<b></b>
<div style=”font-size: large;”>
<b>Please Wait <span>30</span> seconds</b></div>
</div>i got this code but when i add this text below my article then it works fine but when i logged out of wordpress it wont show the changes in current time remaining.
Thank you very much !
- The topic ‘How to create countdown time which appears before download button’ is closed to new replies.