set default value in textarea code example

Example 1: assign value to textarea

<textarea class="article-input" id="article-input" type="text" rows="9" >{{article}}</textarea>

Example 2: html set textarea value

// To set the textarea value, you must insert the TEXT into the element.
<textarea>VALUE</textarea>
// javascript
var textarea = `<textarea>${value}</textarea>`;
document.getElementById('my_textarea_id').textContent = 'foo'
// php
$value = 'foo';
$textarea = "<textarea>$value</textarea>";
echo $textarea;

Tags:

Misc Example