im trying to give a way that the user can give a tittle to a image and write over a image, so my viable solution is to have 2 textfield when the second one is update with the string we introduced in the first input.
Here is the code:
<form action="#" id="form_field">
<input type="text" id="textfield1" value="" onChange="document.getElementById('textfield2').value=this.value">
<input type="text" id="textfield2" value="">
</form>
Is there any form to insert that "input text" over a image? i will hide the box with css after that so its look like you can write something over a image.