How can I add a class to the body in ES6 JS?
I've tried:
let body = document.getElementsByTagName('body');
body.classList.add('my-class');
It fails. No Jquery please.
How can I add a class to the body in ES6 JS?
I've tried:
let body = document.getElementsByTagName('body');
body.classList.add('my-class');
It fails. No Jquery please.
I think the problem for your code is document.getElementsByTagName('body') will return a HTMLCollection, you need to
let body = document.getElementsByTagName('body')[0];
there is an example https://plnkr.co/edit/MFTB95gzYZOYKIJvc5DK?p=preview