Answers for "how to check div is display:none or block in javascript"

1

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)
Posted by: Guest on June-02-2021

Code answers related to "how to check div is display:none or block in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language