Problem with slidedown and fadein
Hi.
I have a table which contains several divs that are placed with css:
- <table>
- <tr>
- <td> <div> <image ...> </div> </td>
- <td> <div> some text </div> </td>
- ......
- </tr>
- <tr class="hidden">
- <td> <div> <image ...> </div> </td>
- <td> <div> some text </div> </td>
- ......
- </tr>
- ....
- </table>
As you can see, only one <tr> is shown from the start. When the user clicks a button, the next hidden tr is supposed to slidedown, and be shown:
- $('Row' + RowNumber).slideDown(700).removeClass('hidden')
But in explorer, the slidedown effect are not shown, it just shows instantly. In firefox, it kind of slides down, but all the elements indside the tr are misplaced when it slides.
Now if i change the slidedown to fadein, firefox shows it correctly, but its the same result with explorer.
Are there anything you can do to fix this?
Thanks alot :)