I am making a add or remove class functionality in JavaScript but it is not working.
here is my code...
if (window.location.hash == "#/profile/"){
document.getElementById("tabMenu").removeClass("bottomTabs").addClass("hidden");
} else{
document.getElementById("tabMenu").className += "show";
};