I've got the following in the <head> of my document:
<script type="text/javascript">
        $(document).ready(function() {
        $(.bc-wrapper:empty").addClass("none");
        });
</script>

and in the <body>,

<div class="bottom-content">
        <div class="bc-wrapper">

        </div><!-- end bottom content wrapper -->
</div>

The class that it's calling, "none" is simply a display: none from the
stylesheet. So basically, if the div doesn't have any content in it,
hide it. If it does have content, then it doesn't have any effect.
Unfortunately, the div is still showing, and the only way that I've
been able to actually get it to disappear is by testing the variables
to target a table in the .bc-wrapper div.

Did I misinterpret the documentation somehow?

Reply via email to