I need to remove the class YoPowered, it is the class of a div. I need it to be removed.
Can't seem to figure this one out.
I need to remove the class YoPowered, it is the class of a div. I need it to be removed.
Can't seem to figure this one out.
var elems = document.getElementsByClassName("YoPowered");
for(var i = elems.length - 1; i >= 0; i--) {
elems[i].className = elems[i].className.replace(/YoPowered/, '');
}
You could optionally replace the document.getElementsByClassName("YoPowered")
with document.querySelectorAll('.YoPowered')
See http://www.quirksmode.org/dom/w3c_core.html for compatibility if that's an issue.