div disappear works and perfect .. but I have an issue, how to make it redirect to the particular url when it is disappeared ... response with the proper code that should work
FUNCTON OF THE SCRIPT: DISAPPEAR DIV AFTER SOME TIME BUT IT DOES NOT REDIRECTS,
FUNCTON OF THE SCRIPT: DISAPPEAR DIV AFTER SOME TIME BUT IT DOES NOT REDIRECTS,
Code:
<script type="text/javascript">
// close the div in 5 secs
window.setTimeout("closeHelpDiv();", 5000);
function closeHelpDiv(){
document.getElementById("helpdiv").style.display="none";
}
</script>
Comment