Css after an ajax callback

Css after an ajax callback


Hi there,
I’ve got a DIV with a Css applied to it so that each child node has a
blue background:
<div>
<a></a> //blue background
<div>
When I try to add children nodes after an Ajax callback my browser
won’t apply the Css:
<div>
<a></a> //blue background
<a></a> //no CSS applied
<a></a> //no CSS applied
... //no CSS applied
<div>
Why the browser doesn’t apply my Css, what I’m missing?