Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this table:

<table>
    <tr class="row">
        <td>Title
            <div class="action">hello</div>
        </td>    
        <td>Rorow</td>
    </tr>
    <tr class="row">
        <td>Title
            <div class="action">hello</div>
        </td>  
        <td>Rorow</td>
    </tr>
</table>

and I want to make the child disappear when I hover over the row. So I made this but it selects all of the other actions as well:

$(".row").hover(
        function () {
            $(".action").css("visibility","hidden");
        },
        function () {
            $(".action").css("visibility","visible");
        }
    ); 

Am I missing something?

share|improve this question

3 Answers

up vote 2 down vote accepted

You can also do this in pure CSS.

tr.row .action {
    display:block;
}

tr.row:hover .action {
    display:none;
}
share|improve this answer
Thanks for answering. I verified this with jsfiddle and works great. – Ron Aug 20 '11 at 2:18
Will this work with IE6? – Ron Aug 20 '11 at 2:20
I'm not sure, but I'm leaning towards no. IE6 has issues with the hover selector. Fortunately, I don't have access to a machine with IE6 to test it, but that's unfortunate in this case. You may want to go with a JS solution just to be sure. – Dennis Aug 20 '11 at 2:24
I just checked with IE7 & IE8 and it looks good so far. – Ron Aug 20 '11 at 3:04

Right now, you're telling every element with the class "action" to disappear when you hover over a row. Instead, you can use this to refer to the row that the cursor passed over, then find its child "action" element and hide it.

$(".row").hover(
    function () {
        $(this).find(".action").hide();
    },
    function () {
        $(this).find(".action").show();
    }
); 
share|improve this answer
Thanks for this. I was browsing for child selectors and couldn't get them to work. :) – Ron Aug 20 '11 at 2:16
Glad I could help! – Matt Aug 20 '11 at 2:17

Simply look for the class within the .row parent element by using $(this):

$(".row").hover(
    function () {
        //$(this) refers to the row that received the hover event
        $(this).find(".action").hide();
    },
    function () {
        $(this).find(".action").show();
    }
);

Here's a working jsFiddle.

share|improve this answer
Thanks! Works for me. :) – Ron Aug 20 '11 at 2:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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