Im using this to delay and fadeout some messages on my site.
<script> $("#infomsg").delay(2400).fadeOut(600);</script>
So when page is loaded the message is still on page 2400ms after that is gone with fadeout, but how i can make, when you open page i need this message to display after 3 sec. or simple slow fadein first.. im try something like this
<script> $("#infomsg").fadeIn(1200).delay(2400).fadeOut(600);</script>
and this not work for me, can you help me to make this ?
P.S Sorry for my english and thanks