Window Browser JavaScript DHTML



timer

function sendAlert() {
    document.write("Hello");
}
function startTimer() {
    var timerID = window.setTimeout(sendAlert,8000);
}



Hello