Currently, my code looks like this:
$(".container a").css("color","#ffffff");
It styles all links inside the ".container" element to be white. However, I have a div that has the following structure:
<div class="container">
<div class="header">
<a href=">
</div>
</div>
In this case, the links inside the second div only appear white in Firefox. Is there a way to adjust the JavaScript line without having to add another line specifically for the header div? Perhaps a way to select all the children instead?