Reset Radio when i click submit button. #1612
Replies: 1 comment
-
i am also having the same problem here |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
if (step < 7) { const selectOptions = Array.from( document.querySelectorAll('input[name="point"]') ) as HTMLSelectElement[]; selectOptions.forEach((selectOption) => { selectOption.selectedIndex = 0; }); handleNextStep(); }
how i can reset radio when click button submit
Beta Was this translation helpful? Give feedback.
All reactions