When pressing Add foo, the textarea get's filled with string: foo.
However, after typing something in my textarea, my Add foo button doesn't work anymore.
<button onclick="document.getElementById('content').append('foo \n\n')">Add foo</button>
<textarea name="content" id="content" cols="30" rows="10"></textarea>