I have a form with multiple fields and I want the option of the user to insert a comment in the value of the field.
Example:
<form>
<input type='text' id='campo'>
<input type='hidden' id='comentario'>
<submit>
</form>
What I want to do is that by right-clicking on input[id=campo]
it shows a balloon to place a text and that text will stay in value
of my input[id=comentario]
field.
Can anyone give me an example of how to do this?