How can I exclude tag elements that have a specific class name?
document.querySelectorAll(\'span
Element by tagName and ignore or exclude element that have a specific class:
document.querySelectorAll(`svg,div:not([class*="background"]`)