<script> in header.

<script> in header.

Hello,

I am trying to add the following script to my site to comply with the EU cookie law:
  1. <!-- Begin Cookie Consent plugin by Silktide - http://silktide.com/cookieconsent -->
  2. <link rel="stylesheet" type="text/css" href="https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/current/style.min.css"/>
  3. <script type="text/javascript" src="https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/current/plugin.min.js"></script>
  4. <script type="text/javascript">
  5. // <![CDATA[
  6. cc.initialise({
  7. cookies: {
  8. social: {},
  9. analytics: {},
  10. necessary: {}
  11. },
  12. settings: {
  13. consenttype: "implicit",
  14. style: "light",
  15. useSSL: true
  16. },
  17. strings: {
  18. notificationTitle: 'This site uses cookies.'
  19. }
  20. });
  21. // ]]>
  22. </script>
  23. <!-- End Cookie Consent plugin -->
However, when this code is added to either the page or site header nothing is displayed. Is there something I'm missing?

Thanks
Jake