<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function(){ $('<a href="/" id="new-logo"><img src="https://content.invisioncic.com/p289038/monthly_2024_08/Kuhantilope_Logo.png.f333238ebe2f0425e90fefa51b204c0f.png" width="180px"/></a>').appendTo('div.header-title a'); }); </script> <script> // Check if the animation state is stored in sessionStorage const isAnimationPlayed = sessionStorage.getItem("animationPlayed"); // Reference to the splash-wrapper div with a specified ID const splashWrapperClass = document.getElementsByTagName("div.header-title img")[0]; // If the animation has already played, hide it and remove it from the DOM if (isAnimationPlayed) { splashWrapper.style.display = "none"; splashWrapper.remove(); // Remove the splash wrapper from the DOM } else { // If the animation hasn't played yet, mark it as played and store it in sessionStorage sessionStorage.setItem("animationPlayed", "true"); } </script>