Another short Q, is there any short piece of code to get all DIVs on a page which have the visibility set to \'block\' or \'inline\'?
block
inline
Thank
Using jQuery:
$("div:visible")
http://api.jquery.com/visible-selector/