I tried to use this solution Using CSS for fade-in effect on page load at this page
I put
<script type="text/javascript>
$("#top).addClass("load");
</script>
in my javascript but why it's not add load class when load. I also has been tried
<script type="text/javascript>
$("#top").delay(1000).animate({ opacity: 1 }, 700);
</script>
but still not worked. It's worked at JSFiddle but not at my site.
Please help me!
Thanks,
Adi