Try putting the content in a div inside the td and doing a slideDown on the
div instead.
- Richard
On Fri, May 2, 2008 at 9:03 PM, Stanley <[EMAIL PROTECTED]> wrote:
>
> If I try to run slideDown on a table row that has TD's with multiple
> colspan, the colspan amount is completely ignored.
>
> My Table looks like so:
>
> <table>
> <tr>
> <td> content </td>
> <td> content </td>
> </tr>
> <tr style="display:none" id="hiddenTR">
> <td colspan="2"> hidden content </td>
> </tr>
> </tr>
>
> The javascript code is very simple: $('#hiddenTR').slideDown();
>
> If you try running that code, you will notice that colspan="2" is
> ignored, instead it behaves as if colspan="1"
>
> What is the proper workaround? Is this wrong altogether?
>