If i use
<div contentEditable="true" name="content"></div>
instead of Textarea in the form i’m not able to submit the input taken in above editable division.
I’m using editable division because i want to add images at run time in the input editable division.
so is there any way to submit an input taken in editable division??
I’m using PHP as server side language.
Only the values of input elements get submitted with a form.
Use a script on the client to put the contents of the
divinto a hidden field when the form is submitted.For example:
…