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.

What i want to do is to change visibility of the span element(which has a background image) when i hover it, which is stayed in a td element.

Everything works well in advanced browsers(including IE7,8), but it cant't work in IE6.

I can't figure it out. Have you guys encountered the same case as mine?

Code like the one below:

 <html>
 <head>
  <title> New Document </title>
  <style>
     .btn{
        cursor: pointer;
        display: inline-block;
        width: 100px;
        height: 100px;
        background-position: 0 0;
        background-repeat: none;
        background-image: url('http://up.ekoooo.com/uploads2/allimg/091024/9_091024065737_1.jpg');
    }
    .default-hidden{
        visibility: hidden;
    }
    .hover .default-hidden{
        visibility: visible;
    }
  </style>
 </head>
 <body>
    <table>
        <tbody>
            <tr onmouseover="this.className='hover';" onmouseout="this.className='';">
                <td>
                    2222222<span class="btn default-hidden">000000</span>33333
                </td>
            </tr>
        </tbody>
    </table>
 </body>
</html>

I registered inline mouseover and mouseout event on the tr element, when you mouseover it, and then the hover class was added to it; when you mouseout the tr and I just remove the hover class name.

thanks, Khalil

share|improve this question
3  
People are still supporting IE6? – Kolink Jan 11 at 2:24
some statistics: major IE version in China is IE6, due to the use of pirated copy of Windows operating system (they cannot upgrade due to license check) – Shivan Raptor Jan 11 at 2:25
1  
yes, you are absolutely right, Raptor. The share of IE6 is about 22%, you can check it in browser share from baidu – starandtina Jan 11 at 2:47

1 Answer

up vote 0 down vote accepted

Put the onmouseover and onmouseout event to <td> instead:

<table>
  <tbody>
    <tr>
      <td onmouseover="this.className='hover';" onmouseout="this.className='';">2222222<span class="btn default-hidden">000000</span>33333</td>
    </tr>
  </tbody>
</table>

Here is a JSFiddle

UPDATE: To deal with IE6, you can change the table structure to DIV & CSS, which is supported by IE6. Since IE6 does not support :hover CSS selector, you can also use this fix to make use of :hover in IE6: http://blog.delivi.com/javascript/updated-hover-for-non-anchor-elements-in-ie6/

share|improve this answer
thanks for your quickly reply. I want to show the td when I hover the entire tr element, not just the td. – starandtina Jan 11 at 2:35
convert it to <div> instead. <tr> JS event is not well supported by IE6 – Shivan Raptor Jan 11 at 5:29
yes, Raptor, you are right. The <div> works well. But in my case, it's a list, so I choose the table layout to get it. Is there any workaround for it? – starandtina Jan 11 at 6:51
No. you can't make IE6 to support its unsupported features. – Shivan Raptor Jan 11 at 8:51
Updated answer for alternate solution – Shivan Raptor Jan 11 at 9:02

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.