I have some code that fades in the container div of the home page of my site and a picture frame around it, but I don't want it to ever display that effect again, even on subsequent page reloads, or even when the home page link is clicked. How would I go about this? Here is the code I currently have:
<script type="text/javascript" src="jquerys.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("img.frame").hide(0,function(){
$("div.container").hide(0,function(){
$("img.frame").fadeIn(1000);
$("div.container").fadeIn(1000);
});
});
});
</script>
Thank you for the help!