vote up 3 vote down star

A .container can contain many .components, and .components themselves can contain .containers (which in turn can contain .components etc. etc.)

Given code like this:

$(".container .component").each(function()
{
    $(".container", this).css('border', '1px solid #f00');
});

What do I need to add to the line within the braces to select only the nested .containers that have their width in CSS set to 'auto'? I'm sure it's something simple, but I haven't really used jQuery all that much.

flag

4 Answers

vote up 4 vote down check
$(".container .component").each(function()
{
    $(".container", this).each(function() {
        if($(this).css('width') == 'auto')
        {
            $(this).css('border', '1px solid #f00');
        }
    });
});

Similar to the other answer but since components can also have multiple containers, also needs the .each() check in here too for the width.

link|flag
vote up 0 vote down

Many thanks for your replies.

I would have ideally liked to include the CSS rule within the selector, so that I had a group of all the .containers that are within a .component that have a CSS width: auto, but never mind.

link|flag
vote up -1 vote down

I think you want an attribute selector

link|flag
vote up 3 vote down
$(".container .component").each(function() {
    if ($(".container", this).css('width') === "auto")
        $(".container", this).css('border', '1px solid #f00');
});
link|flag

Your Answer

Get an OpenID
or

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