Hello everyone!
I have this code:
<DIV id="Intro" class="Intro">
...
<A href="#" class="ComeIn" style="COLOR: #FFF">Enter on the website</A>
</DIV>
<SCRIPT>
$('.ComeIn').click(function()
{
$(this).parent('#Intro').fadeOut(1000);
});
</SCRIPT>
I need the DIV "Intro" to be shown just once per user's visit or per IP, whichever is better... I just do not want it to be shown every time the visitor reloads the page or restoring it after closing it. The DIV Splash and the main page are the same file.