boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

How to remove an class in javascript?

Updated on     Kisan Patel

How to remove an class in javascript?

Solution 1:

//remove a css class from an element
document.getElementById("myElementID").classList.remove("class_name"); 

Solution 2:

document.getElementsByClassName("legend").style.display = "none";

Solution 3:

function removeClass() {
  var element = document.getElementById("myDIV");
  element.classList.remove("mystyle");
} 

JavaScript

Leave a Reply