$(document).ready(function () { var counter = 30; var id = setInterval(function() { counter--; if(counter > 0) { var msg = 'Show Your Cccam in ' + counter + ' seconds'; $('#notice').text(msg); } else { $('#notice').hide(); $('#download').show(); clearInterval(id); } }, 1000); }); window.onload = function() { setTimeout(function() { document.getElementById('myButton').style.display = 'block'; }, 30000); // time in milliseconds (10 seconds) }