I have a form with input elements in . At the bottom of the form I have a group of inputs, say X. I have a “add more” button, on clicking this button, this group of inputs should be appended to the form.
I have done the JS n HTML part. But I was wondering that is there any way to display group of rows as fieldset(outer border and title/legend), This will look better. Or any other way to do it?
I have a form with input elements in . At the bottom of the
Share
You cannot group table rows using
fieldsetmarkup, but you can group them usingthead,tfoot, andtbodymarkup. E.g.You can then style it, e.g.