Skip to content

Instantly share code, notes, and snippets.

@peterbrinck
peterbrinck / cookier_banner.html
Created April 3, 2020 06:55
Simple cookie-banner with AlpineJS - original by @lepikhinb
<div x-data="{ show: !localStorage.getItem('hide-banner')}">
<div x-show="show">
<button type="button" @click="localStorage.setItem('hide-banner', true); show = false;">
OK!
</button>
</div>
</div>