how would i make text dissapear then the text on that page apears all on the same page i know how to make text dissapear like this
But how can i make text apear after the loading screen gose away like the videos comes on the page after it says loading... please help me iv been looking for so long if you could give me a code that would be great thank you.
Code:
<div id="helpdiv" style="display:block">
Loading...
</div>
<script type="text/javascript">
// close the div in 5 secs
window.setTimeout("closeHelpDiv();", 5000);
function closeHelpDiv(){
document.getElementById("helpdiv").style.display=" none";
}
</script>
But how can i make text apear after the loading screen gose away like the videos comes on the page after it says loading... please help me iv been looking for so long if you could give me a code that would be great thank you.
Comment