Для теста создайте чистую HTML-страничку и пропишите:
<script>
window.onload = function(){
var eSpanButton = document.getElementById('spanButton');
eSpanButton.onclick = function(){
var text = 'TESTTEXT';
document.getElementById('quick_reply').getElementsByTagName('textarea')[0].value += text;
};
};
</script>
<span style="padding-left:0; cursor: pointer;" id="spanButton" >Insert!</span>
<form class="vbform" name="quick_reply" id="quick_reply" >
<textarea dir="ltr" tabindex="-1" role="textbox"></textarea>
</form>