Required fields when hidden

If clients insist on a form I use CSS to control the submit button.

<pre><span><style>

[data-test="nav-button-Submit"] {
pointer-events: none;
opacity: 0.4;
}

Then I can conditionally control when to make this “visible”.

4 Likes