HomeJavaScriptHow to Check if an element is hidden using jQuery ?

How to Check if an element is hidden using jQuery ?

Below is a sample code snippet demonstrating how to check if an element is hidden (Display:None) using jQuery .

How to Check if an element is hidden using jQuery ?

$(element).is(":visible") 

Leave a Reply

You May Also Like

You might want to filter an array in JavaScript by passing the filter criteria and return the filtered array. In...
You can flatten a 2-D array in JavaScript using the concat and apply method as shown in the below code...
Assume that you have an angle in degree and you wish to convert it to radians in JavaScript so that...