[ad_1]
I’m trying to get the plugin to ignore several fields until the user clicks a button that activates them.
Currently, I have the following code to hide several fields:
for (let i = 0; i < 6; i++) {
IGNOREFIELD(i+6);
};
This code is in the very first field on my form. However, when I load the preview of the form, the fields I want ignored first blink into existence and only then disappear. Is there a way to force them to not be appear on page load in the first place?
