vote up 0 vote down star

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

flag
1  
In future, there's no need to sign your name since you already have that big box with your name on it. – Crises of Identity Oct 20 at 11:24
1  
so you want to hide banners... at least paste the full code to see what the advertiser's script does. – Pedro Ladaria Oct 20 at 11:31
1  
Where's your <script> tag? – Kobi Oct 20 at 11:32
script tag added – Tommy Oct 21 at 9:32

2 Answers

vote up 2 vote down check

CSS styles effect js-generated HTML elements -- in fact, your example code works exactly as expected in my tests. (After adding in the <script> element, anyway)

I suspect there's some other problem with your code that's preventing it from behaving how you like -- If you edit the question with the code you actually used we might be able to help you find the problem. There's probably just a simple syntax or precedence error in there somewhere.

link|flag
vote up 0 vote down

You can append child elements to the document without using document.write. Add an image element as child to the div.

Use

document.createElement

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.