<div id="div1">A DIV element...</div><div id="div2">Another DIV element</div><div id="div3" hidden>A hidden DIV element</div><button onclick="switchHidden()">Click to hide visible DIVs and show hidden ones</button><script type="text/javascript">functionswitchHidden() {
document.getElementById("div1").hidden =!document.getElementById("div1").hidden;
document.getElementById("div2").hidden =!document.getElementById("div2").hidden;
document.getElementById("div3").hidden =!document.getElementById("div3").hidden;
// alternatively you could do something like Array.prototype.forEach.call(document.getElementsByTagName("div"), div => div.hidden = !div.hidden);
}
</script>
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email