[jQuery] Re: how to get a row of a table sorted with quicksearch plugin in a text box

2009-05-18 Thread abrar alam
kahaon ho bhai ? On Mon, May 18, 2009 at 10:23 AM, Mohd.Tareq tareq.m...@gmail.com wrote: Hi, To get data of a row you need to use id of that row. var row_data = $('#row_id').html(); To insert into your your form textarea Again you need to use id of that textarea. like :

[jQuery] Re: how to get a row of a table sorted with quicksearch plugin in a text box

2009-05-17 Thread Mohd.Tareq
Hi, To get data of a row you need to use id of that row. var row_data = $('#row_id').html(); To insert into your your form textarea Again you need to use id of that textarea. like : $('#textarea_Id').html('Some string value you can pass here '+row_data); Hope you will solve your problem hope I