$(document).ready(function () { // Function to show the modal with animation function showModal() { $('#login-modal').fadeIn(300); // Fade in over 300ms } // Function to hide the modal with animation function hideModal() { $('#login-modal').fadeOut(300); // Fade out over 300ms } $(document).ready(function() { $('#pro-buy-now, #ultimate-buy-now').click(function(event) { if (!isUserLoggedIn) { event.preventDefault(); // Prevent the default action of the anchor tag showModal(); // Show the modal with animation } }); // Hide the modal when clicking outside of it $(document).click(function(event) { if (!$(event.target).closest('#login-modal, #pro-buy-now, #ultimate-buy-now').length) { hideModal(); // Hide the modal with animation } }); // Prevent closing the modal when clicking inside the modal $('#login-modal').click(function(event) { event.stopPropagation(); }); // Hide the modal when clicking the close button $('#close-modal').click(function() { hideModal(); // Hide the modal with animation }); }); });