the home site for me: also iteration 3 or 4 of my site
1// static/js/nativeads.js
2
3function hideAdNote() {
4 document.getElementById("ad-note").id = 'ad-note-hidden';
5 document.getElementById("ad-note-content-wrapper").innerHTML = "";
6 document.cookie = "notice-shown=true;path=/";
7}
8
9if (!document.cookie.includes("notice-shown")) {
10 document.getElementById("ad-note-hidden").id = 'ad-note';
11 document.getElementById("ad-note-content-wrapper").innerHTML = "No adblocker detected. " +
12 "Consider using an extension like <a href=https://github.com/uBlockOrigin/uBOL-home/blob/main/README.md>uBlock Origin</a> to save time and bandwidth." +
13 " <u onclick=hideAdNote()>Click here to close.</u>";
14}