Answers for "body hasclass javascript"

4

javascript hasclass

if (document.body.classList.contains('thatClass')) {
    // do some stuff
}
Posted by: Guest on April-02-2020
0

check if body has class javascript

document.body.classList.contains('my-class-name')
Posted by: Guest on April-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language