What is the grouping form field?

Asked By 10 points N/A Posted on -
qa-featured

Hello,

What is the grouping form field? How does it work? Where does it use? Please tell me about details. Is grouping form field important to web page?

SHARE
Best Answer by Reyad
Answered By 5 points N/A #164816

What is the grouping form field?

qa-featured

Hello,

Group form fields makes easier to identify or separate the forms field.

There are some attribute like fieldset, legend etc.

Thanks.

Best Answer
Best Answer
Answered By 0 points N/A #164817

What is the grouping form field?

qa-featured

1.Grouping form field is a style where you can collect the related  data set  from user and the form field is separated from other field.

2.It works by <fieldset> tag which is used to group together elements in a form and it creates a border in around the field and identify special data group.

3.It is used in Registration Form such as yahoo.com

<form action="" method="post">
  <fieldset>
    <legend>Information</legend>
    <table>
<tr>
<td>First Name</td>
<td><input type="text" name="fname"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="lname"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="lname"></td>
</tr>
</table>
  </fieldset>
</form>

4.Yes, Of-course it is important.You need to use it to collect data in a group.

Related Questions