i want to show One new number revealing every day from *96 to *01 by clone 96 and push it in next day like this
<!-- HTML -->
<div class="content">
<a class="days day-96" style="display:none;">
*96
</a>
<a class="days day-95" style="display:none;">
*95
</a>
</div>
// JS
$(document).ready(function(){
// Delay the action by 10000ms
setTimeout(function(){
$(".day-96").show();
}, 0000);
setTimeout(function(){
$(".day-95").show();
}, 5000);
});
Via Active questions tagged javascript - Stack Overflow https://ift.tt/2FdjaAW
Comments
Post a Comment