I have many input fields with type="text"
<input type="text" id="...">
<input type="text" id="...">
<input type="text" id="...">
...
<input type="text" id="...">
<input type="text" id="...">
<input type="text" id="...">
I want to prevent from typing type="text" on every input. Is there any way to group inputs like this:
<inputgroup type="text">
<input id="...">
<input id="...">
<input id="...">
</inputgroup>
The solution can be coded with HTML, Javascript or anything else for WEB.