We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b23589 commit f8bf1b0Copy full SHA for f8bf1b0
cookieyes-banner.js
@@ -0,0 +1,13 @@
1
+const cookieyesSrc = "https://cdn-cookieyes.com/client_data/0ec5a8e516eccaa724a461f6/script.js";
2
+const bannerId = "cookieyes";
3
+
4
+function createBanner() {
5
+ const el = document.createElement("script");
6
+ el.src = cookieyesSrc;
7
+ el.id = bannerId;
8
+ el.type = "text/javascript";
9
10
+ document.head.appendChild(el);
11
+}
12
13
+createBanner();
0 commit comments