I want to display the alert box but for a certain interval. Is it possible in JavaScript?
May be it's too late but the following code works fine
document.getElementById('alrt').innerHTML='Please wait, Your download will start soon!!!'; setTimeout(function() {document.getElementById('alrt').innerHTML='';},5000);