- Home
- Categorie
- Coding e Sistemistica
- Javascript & Framework
- [JS] Errore JavaScript sul plugin CookieChoices
-
[JS] Errore JavaScript sul plugin CookieChoices
Buongiorno a tutti,
sto utilizzando lo script CookieChoices per il famoso banner sulla CookieLaw.L'ho già utilizzando e configurato su un sito web senza ottenere problemi, ma su questo dominio.
Ho creato questa pagina di test, senza contenuto, dove ottente 2 errori, come se non trovasse qualcosa:
*TypeError: invalid 'in' operand document.body cookiechoices.js (linea 25, col 6)
ReferenceError: cookieChoices is not defined _test.php (linea 15, col 4)*
Secondo voi da cosa potrebbe dipendere?
Grazie.
-
includi il js alla fine della pagina e funzionerà:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html" />
<meta name="author" content="robertino" /><title>Senza nome 1</title> <!-- Jquery --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function(event) {
cookieChoices.showCookieConsentBar('Your message for visitors here',
'close message', 'learn more', 'example.com');
});
</script>
</head><body>
<P>TEST</P>
<script src="_cookie_law/cookiechoices.js"></script>
</body>
</html>