I have a little jQuery script where a user is able to create and append form fields to create a form. I'm adding a feature where a user can add page break anywhere in the form so that the form can split into parts. So first part shows the fields until it detects page break, then user clicks on next, and the second set of fields will show until page break and so on. I was thinking i could break the pages using <hr/>
so each set of fields will show until the <hr/>
break.
The idea is a little vague. How would you approach this?