// Get the like button and unlike button elements const likeButton = document.getElementById('like-button'); const unlikeButton = document.getElementById('unlike-button');
// Set the initial state of the like button and unlike button based on the value of the "like" cookie if (getCookie('like') === 'true') { likeButton.style.display = 'none'; unlikeButton.style.display = 'inline-block'; } else { likeButton.style.display = 'inline-block'; unlikeButton.style.display = 'none'; }
// Add a click event listener to the like button likeButton.addEventListener('click', function() { // Set the "like" cookie to "true" setCookie('like', 'true', 365); // Update the button display likeButton.style.display = 'none'; unlikeButton.style.display = 'inline-block'; });
// Add a click event listener to the unlike button unlikeButton.addEventListener('click', function() { // Set the "like" cookie to "false" setCookie('like', 'false', 365); // Update the button display likeButton.style.display = 'inline-block'; unlikeButton.style.display = 'none'; });
// Function to get a cookie value function getCookie(name) { const value = `; ${document.cookie}`; const parts = value.split(`; ${name}=`); if (parts.length === 2) return parts.pop().split(';').shift(); }
// Function to set a cookie function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); const expires = `expires=${date.toUTCString()}`; document.cookie = `${name}=${value};${expires};-Path=/`; }
San Diego is a city on the Pacific coast of California known for it's beaches, parks and warm climate. Immense Balboa Park is the site of the renowned San Diego Zoo, as well as numerous art galleries, artist studios, museums and gardens. A deep harbor is home to a large active naval fleet, with the USS Midway, an aircraft-carrier-turned-museum, open to the public.