Sorun Çözüldü Konu kilitlenebilir javascript fonksiyonu şöyle olmalı:
function showIt(){
document.getElementById("div1").style.display = "visible";
}
function showIt2(){
$("#div1").remove();
document.getElementById("div2").style.visibility = "visible";
}
function showIt3(){
$("#div2").remove();
document.getElementById("div3").style.visibility = "visible";
}
setTimeout("showIt()", 1000); // after 1 sec
setTimeout("showIt2()", 5000); // after 5 secs
setTimeout("showIt3()", 10000); // after 10 secs