Home › Forums › JavaScript › Show a particualr div after the entire page is displayed on the client machine. › Reply To: Show a particualr div after the entire page is displayed on the client machine.
February 25, 2016 at 8:42 am
#238447
Participant
hi @Shikkediel
i used
<script type="text/javascript">
function changeSomething(){
$(".box").delay(9000).fadeIn(3000);
$(".home_logo").animate({opacity: '0.15'}, 14000);
}
window.onload=changeSomething;
</script>
Its the same as what you said.
Now i face another problem.
When i click on either of the four links on the page. I want to refer to the .box class and .homelogo class, change teh homo_logo opacity back to 1 and display:none to the box class. I added a javascript to the click events. but dint work?