display none js
document.getElementById("myDIV").style.display = "none";
display none js
document.getElementById("myDIV").style.display = "none";
how to check div is display:none or block in javascript
// If you have set the display property using JavaScript
let current = element.style.display;
// If you have not set the display property manually
let current = window.getComputedStyle(element).display;
// 'current' will be the display style as a string (eg. "none", "block", etc)
Copyright © 2021 Codeinu
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