<div>
<textarea class="input-area additional" name="research_projects[]" placeholder="Project Details" spellcheck="false"></textarea>
</div>
<div>
<textarea class="input-area additional" name="research_projects[]" placeholder="Project Details" spellcheck="false"></textarea>
</div>
These are 2 textareas with identical name research_projects[ ]. And it is dynamic also, multiple of those textareas can be added. So how can I add ckeditor to all those textareas.
2
Answers
Give them different IDs and do
I have faced the same issue for submitting the form with add more button and the dynamic jquery content.
CKEditor maybe not work with class and ids,
What I do.
like
I hope this idea will work for you.
Thanks