assign value to textarea
<textarea class="article-input" id="article-input" type="text" rows="9" >{{article}}</textarea>
assign value to textarea
<textarea class="article-input" id="article-input" type="text" rows="9" >{{article}}</textarea>
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;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us