It is possible.This is a pseudocode :
$('table').children('select').each(function(){
$(this).parent().append($(this).val());
$(this).remove() //you could do .hide() if you just want to hide them
});
Thanks & Regards,
Dhruva Sagar.
Jonathan Swift<http://www.brainyquote.com/quotes/authors/j/jonathan_swift.html>
- "May you live every day of your life."
On Fri, Aug 21, 2009 at 3:36 PM, [email protected] <
[email protected]> wrote:
>
> Is it possible to run through an entire table and replace all
> instances of select with it's value instead?