How to check the div is visible/Hidden

How to check the div(any element) is visible/Hidden

HTML :

<div id=”divPatientDetail”></div>

JQuery :

if ($(“#divPatientDetail”).is(“:hidden”)) {}

if ($(“#divPatientAcuityDetails”).is(“:visible”)) {}

Explanation :

Codition will check whether “divPatientDetail” div is hidden or visible

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.