I would like to know how to select all elements with class names \"widget\" and \"hover\" and then remove class \"hover\" from these elements.
I have the following J
This might help
let allElements = Array.from(document.querySelectorAll('.widget.hover')) for (let element of allElements) { element.classList.remove('hover') }