you can use localStorage instead of cookies, since it works like a persistent browser note that remembers specific post IDs you've already visited. so when a user clicks the “blog" link, the script updates this note to hide the “new” banner for them specifically, which is a lot simpler for static sites. idk if that’s what you want to do though?
you can use localStorage instead of cookies, since it works like a persistent browser note that remembers specific post IDs you've already visited. so when a user clicks the “blog" link, the script updates this note to hide the “new” banner for them specifically, which is a lot simpler for static sites. idk if that’s what you want to do though?
YES thats exactly what i meant, ty!!! i'll try that out :D