CF7 dynamic reload of a custom tag/template
i have an application that loads part of a form via a custom tag. one of the things this tag does is takes a number as an argument and then outputs that many rows for a table. for example if 3 is passed as an argument, then it creates a table with 3 rows.
i want to have a button that the user can press and then it will add/remove rows from the form by passing a different number to the tag and reloading it without refreshing the entire page.
i can do this via javascript dom, but if i could i'd rather do it via reloading the custom tag (because it does some other things besides insert table rows).
thanks
