Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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)
 
PREVIOUS NEXT
Tagged: #check #div #block #javascript
ADD COMMENT
Topic
Name
6+9 =