Hi Roy,

This question is better suited for the jquery-en mailing list since it
doesn't deal with any jQuery UI plugins. You'll reach a larger
audience over there.

The only thing that stands out to me is that "td:img" is probably not
the selector you want; you probably want "td img". The selector you're
currently using says "find all elements with a tag name of td that
match the img psuedo-selector (which isn't defined). The result is
actual table cells. "td img" says find all elements with a tag name of
td and then all descendants of those elements with a tag name of img.

I wouldn't be surprised at all to see odd behavior in IE when fading
out an actual table cell as opposed to its contents.


On Nov 1, 6:21 pm, Roy chavez <[email protected]> wrote:
> Hi there. I have a table with thumbnail images with a fade effect on
> hover. Firefox and Safari render the effect well, but IE is deleting
> every image i hover over until the last one in the row. I am using the
> latest jQuery download.
>
> you can view the IE bug example 
> here:http://roychavez.com/idc/port/commercial/index.html
>
> this is the script that I am executing.
>
> <script type="text/javascript" src="../../html/jquery-1.3.2.js"></
> script>
>  <script>
>   $(document).ready(function(){
>
>     $("td:img").hover(function(){$(this).fadeOut(50);$(this).fadeIn
> (500);});
>
>   });
>   </script>
>
> any obvious suggestions?
>
> thanks!

--

You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en.


Reply via email to