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: 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 jQuery’s is() to check the selected element with another element, selector or any jQuery object. This method traverses along the … Read more