Darkmode.js icon indicating copy to clipboard operation
Darkmode.js copied to clipboard

TypeError: null is not an object (evaluating 'document.body.insertBefore')

Open matiasmacera opened this issue 6 years ago • 2 comments

Im getting this error when trying to add the script

TypeError: null is not an object (evaluating 'document.body.insertBefore')

matiasmacera avatar Jun 23 '19 20:06 matiasmacera

script in body is OK

youcanping avatar Jun 25 '19 01:06 youcanping

Try loading the library with a function on window's load:

  function addDarkmodeWidget() {
    new Darkmode().showWidget();
  }
  window.addEventListener('load', addDarkmodeWidget);

sandoche avatar Aug 13 '20 13:08 sandoche