I tried $.isshown() but there is not this function

link|improve this question

42% accept rate
feedback

2 Answers

up vote 8 down vote accepted

I think this should work:

$(elem).is(":visible");
link|improve this answer
feedback

use the :visible selector:

if($('div#target:visible').length){
    alert('target is visible');
}

edit: use Quintin Robinson's solution, it's much clearer

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.