How to check element is visible or hide in jquery
08 May 2014, 06:02 AM
You can check the visible property of the element using is method. See the example below
$(element).is(":visible")
It returns true if element is visible otherwise returns false.