Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumHTMLfieldset legendSingle-choice MCQ

All inputs in a form live inside a single <fieldset>, but the submit <button> sits outside the <form> and uses the form attribute. Does the button submit those inputs?

<form id="signup"> <fieldset> <input name="user"> </fieldset> </form> <button type="submit" form="signup">Go</button>