Safe AND quickest way to add a css class to the body of the DOM

document.body.className += ' home';

Performance comparision: className vs classList vs addClass :

Update(based on PSL’s comment)

or for newer ones document.body.classList.add("home");

Make sure you do this under the <body>, it won’t work if applied from a <head> script

Leave a Comment

tech