Is there a clean way to create a form with three pages (or color section) through a forms plugin? How to wrap a group of fields in the container with id=“a”, “b”, “c”. For example, I create a form template. How do I display specific fields in these containers? This is not a question of transferring data between pages, we are just showing part of the form code (id=“a”, “b”, “c”.) using CSS and JS. This may not be a page, such as the background color for the form section.
<div id="1"> <div id="a"> <div class="row"> <div class="col-sm-6 mb-4"> </div> <div class="col-sm-6 mb-4"> </div> </div> <div> </div> <div> </div> <div class="row"> <div class="col-sm-6 mb-4"> </div> <div class="col-sm-6 mb-4"> </div> </div> </div> <div id="b" style="display: none;"> <div class="row"> <div class="col-sm-6 mb-4"> </div> <div class="col-sm-6 mb-4"> </div> </div> <div class="row"> <div class="col-sm-6 mb-4"> </div> <div class="col-sm-6 mb-4"> </div> </div> <div> </div> </div> <div id="c" style="display: none;"> <div> </div> <div> </div> <div> </div> </div> </div>