I am inserting a small editable select-option in a html form. But i don't want to send it. So i need a select-option version of this
<div contenteditable="true">
This text can be edited by the user.
</div>
Something like that
<div select="true">
<div option="true"></div>
<div option="true"></div>
<div option="true"></div>
</div>
Is there a an easy way to achieve it without using js?