please try this
$("#tableId > tr > td").each(function(){
this.text("your value");
});
this should be work for you.
--
with regards
Jilani Jidni
On Mon, Nov 3, 2008 at 6:41 PM, Devin <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> I'm trying to devise a way to check each cell in a table for a
> particular value. When the value is found, I want to remove the row
> from the document. Or, when its found I want to do a replace. (ie $
> (this).innerHTML.replace("name", "Devin") I know that syntax is
> wrong but I think it gets across what I'm trying to do)
>
> Thanks.
>
> D