Hello,
I've got a few <div>'s that are dynamically generated,
what I want to do is construct a conditional javascript statement that will set display:none to all empty <div class='policy_text'>
for example:
if { <div class='policy_text'></div> } then set div.policy_text to display:none;
elseif {
<div class='policy_text'>text contents.. bla bla</div>
} then do nothing
Thanks for your help!