Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I append a row to a table using the prototype library.

This is part of a form so I would like to also find a way to increment the <input name="container[0]"> value. Is this possible?

share|improve this question
oh it chopped out my html. I want to increment the name="inputname[0]" portion of an input tag within the row. – vicTROLLA Oct 23 '09 at 20:08

1 Answer

up vote 5 down vote accepted

if i understand you right something like this would work:

var numrows = $$('#tableid tr').length;
$('tableRow').insert({after:'<tr><td><input type="text" name="container['+numrows+']"></td></tr>'});

if you can provide more details then i'll be able to help out a bit more

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.