Possible Duplicate:
Get CSS style from PHP
I want to make an if
that will do things, only if div's display is not none. Here is an example:
<div id="div_1" style="display:none;">blah blah blah</div>
<?php if (div_1 display is none){...} else {echo $variable;} ?>
Any idea how will I syntax this part (div_1 display is none)
??? If it can be of-course! Thank you in advance!