Ak chces pridavat do textarei rozne veci, najlepsie by to bolo riesit cez parameter funkcie dopln:
Kód:
<script>
function dopln(co)
{
var newAdd;
switch(co)
{
case 1: newAdd = "<br>";
case 2: newAdd = "<strong>";
}
document.getElementById('txt').value = document.getElementById('txt').value + newAdd;
}
</script>
<img onclick=dopln(1);><img onclick=dopln(2);>
<textarea id=txt></textarea>