-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.txt
More file actions
22 lines (18 loc) · 797 Bytes
/
script.txt
File metadata and controls
22 lines (18 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- You should make sure that the file cookiechoices.js is available
and accessible from the root directory of your site. -->
<script src="/cookiechoices.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function(event) {
cookieChoices.showCookieConsentDialog('Your message for visitors here.',
'close message', 'learn more', 'http://example.com');
});
</script>
<!-- You should make sure that the file cookiechoices.js is available
and accessible from the root directory of your site. -->
<script src="/cookiechoices.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function(event) {
cookieChoices.showCookieConsentBar('Your message for visitors here',
'close message', 'learn more', 'http://example.com');
});
</script>