On 16 Sty, 00:23, "Rick Faircloth" <[EMAIL PROTECTED]> wrote:
> Hi, Sebastian...
>
> Yes, it is possible. I've worked trying to get smooth
> animation out of sliding table rows, but they're always
> "jerky". I resorted to putting entire tables in div's
> and animating the div's to get smooth performance.
>
> What does your entire jQuery and HTML code look like?
>
> Got a page I can see?
>
I have tried it on localhost,
but my code is quite simple
<table>
<tr id="row1" style="display: none;">
<td>cell 1</td><td>cell 2</td>
</tr>
<tr>
<td>cell 3</td><td>cell 4</td>
</tr>
</table>
<a href="#" id="hide1"> hide row 1 </a>
and js:
$(document).ready(function(){
$("#hide1").click(function () {
$("#row1").show("slow");
// $("#row1").show(); -> it works fine, but no effects. I
this that is single solution.
return false;
});