Buyrun, ben bir kod hazırladım.
.css
#test{display:none}
.html
Burası içerik
.js
$( document ).ready(function() {
if($('#test').is(':visible')){
document.write('#test = görünür');
}else{
document.write('#test = display:none');
}
});