I want to fill a text area with values in a list obtained from Ajax request in a django app. Here is the list returned
{"listforeign": ["t", "t", "t", "g", "g", "g", "o"]}
here is the textarea where it goes.
<textarea rows="10" name="BaseP" id="id_BaseP" placeholder="Paste text here ..."
 cols="40" class="textarea">
The problem is
- Append the values from the listforeign into the text area. 
- the element "o" should be in color red 
any help?
 
     
     
    