I am using TinyMCE.
If I insert another texaria into my text area (editor), tinymce considers that the closing tag of this matters, and therefore it closes the editor. All code can be found there after an external editor ...
Do you have any ideas?
The code below works:
<textarea id="elm1" name="elm1"> <input type="text" value="okokokok"/> </textarea>
Below code does not work:
<textarea id="elm1" name="elm1"> <textarea>Blablablabla</textarea> <input type="text" value="okokokok"/> </textarea>
Here "<input type="text" value="okokokok"/></textarea>" will find an external editor ...
Do you understand my problem?
source share