[jQuery] Cloning a table row that is not in a table

2010-01-13 Thread RhythmicDevil
The scenario. I have a table with form inputs. I want to clone the row to provide another row of inputs to the user. How I plan to do it. I start the table with one row. I also place a copy of that row inside a hidden div on the page. When the user clicks a button I clone and append the row from

Re: [jQuery] Cloning a table row that is not in a table

2010-01-13 Thread Nathan Klatt
On Wed, Jan 13, 2010 at 9:15 AM, RhythmicDevil rhythmicde...@gmail.com wrote: So it seems I can only select a row if its in a table? That makes no sense? Makes perfect sense; a table row cannot exist outside of a table. Nathan