Check if an element is shown with jQuery

Quite easy:

jQuery('#some-element-id').is(':visible');

Cool!