In HTML , there are Form-associated elements, which are elements that are associated with form input for example.
Well, but even if it is not usual, if in a given situation I want a NOT 'Form-associated' element to be associated with the form in question, something like:
<form>
<div value="VALOR"></div>
</form>
Is it possible to associate these elements with HTML only? (submit the div value)
NOTE: I do not want to capture the value with JS
or otherwise, the question is whether there is any way to make these elements associated in a natural way with HTML .