[jQuery] how do i use display: table-row; instrad of display: block; with the show() effect on table rows?
<html>
<head>
<style>
P
{
margin:0px;
padding:0px
}
body
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body><div style="text-align: left;">Thanx that did the trick.
also importand to add is that a table MUST HAVE <tbody> and </tbody> :) if you don`t have that it will get messy again :P
but thanx alot for fixing this issue.
</div>
<hr id="stopSpelling">> Date: Sun, 25 Feb 2007 23:39:37 +0100
> From: zelexir@gmail.com
> To: discuss@jquery.com
> Subject: Re: [jQuery] how do i use display: table-row; instrad of display: block; with the show() effect on table rows?
>
> maybe something like this:
> $(newObject).show("slow", function() {
> $(this).css("display", "table-row")
> });
> //Kristinn
>
> On 2/25/07, Mark <markg852@hotmail.com>