I have a bootstrap dropdown collapse. I use it as a dropdown megamenu . there is an icon that I want it changed by clicking on it. and I use materialize.css icons pack, so I have to change the text, not the class. I used this
function ChangeIcon(){
document.getElementById("icon-change").textContent="close";
}
<i onclick="ChangeIcon()" id="icon-change" data-toggle="collapse" data-target="#mega-menu-dropdown" class="material-icons">menu</i>
function ChangeIcon(_this){
if(_this.textContent === "close") {
_this.textContent = "menu";
} else {
_this.textContent = "close";
}
}
<i onclick="ChangeIcon(this)" id="icon-change" data-toggle="collapse" data-target="#mega-menu-dropdown" class="material-icons">menu</i>