How do I check if an element is hidden in jQuery?

Since the question refers to a single element, this code might be more suitable: // Checks CSS content for display:[none|block], ignores visibility:[true|false] $(element).is(“:visible”); // The same works with hidden $(element).is(“:hidden”); It is the same as twernt’s suggestion, but applied to a single element; and it matches the algorithm recommended in the jQuery FAQ. We use … Read more