If I have this css
div.myContainer img.noCampaign { display:none; }
and this html/javascript
<div class="myContainer">
<script>document.write('<img class="noCampaign" src="whatever.jpg" />');</script>
</div>
I can't seem to get the img element to disappear?
Is there no access to the img element through css when dynamically adding elements with javascript document.write?
/T