NOTICE: All Tulsa Health Department locations are closed Thursday & Friday, Nov 23-24th in observance of Thanksgiving. We will reopen on Monday, November 27th to serve you.
let closeNotificationButton = document.getElementById("btn-close-notification");
let notificationBar = document.getElementById("notification-bar");
closeNotificationButton.addEventListener("click", hideNotificationBar);
function hideNotificationBar() {
notificationBar.style.display = "none";
};