Thank you, Andrea.
Your solution works for me as well.
Regards,
Alexey
On Sep 3, 12:14 pm, "Andrea Giammarchi" <[EMAIL PROTECTED]>
wrote:
> I can confirm IE7, and 8b2 as well, has some problem fading tr.
> I tried to fix the length, set the background ... nothing, the "antialiased
> render" does not let me perform the fade, and the result is nearly horrible.
>
> I wonder if in the IE and tr case, jQuery could automatically perform
> something like this:
>
> <script type="text/javascript">
> $.browser.msie ? $("#row1").find("td").fadeOut("slow") :
> $("#row1").fadeOut("slow");
> </script>
>
> That works fine for me, in every IE too, creating N fades, but at least,
> producing the expected result.
>
> Kind Regards.
>
> On Tue, Sep 2, 2008 at 6:10 PM, Ikar <[EMAIL PROTECTED]> wrote:
>
> > Hi everyone,
>
> > I want to use fadeOut effect for table row and it works great at FF3
> > and doesn't work at IE7.
>
> > Can anybody help me?
>
> > Example of my code below:
>
> > <html>
> > <body>
> > <table id="table1" >
> > <tr id="row1">
> > <td>hello</td>
> > <td>world</td>
> > </tr>
> > <tr>
> > <td id="td2">hellohello</td>
> > <td>worldworld</td>
> > </tr>
> > </table>
> > <script type="text/javascript" src="jquery-1.2.6.js"></script>
> > <script type="text/javascript">
> > jQuery(document.getElementById("row1")).fadeOut("slow");
> > </script>
> > </body>
> > </html>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" 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-dev?hl=en
-~----------~----~----~----~------~----~------~--~---