ボタンが押されたときにカーソルが次のようになるようにする必要があります。
1) 文末を見つける 2) カーソルを文末から後ろに移動する "x" スペース (x は変数);
ここにフィドルがあります-----> jsFiddle <------
HTML
<span>From the end, move the cursor back this many spaces: </span>
<input type='text' id='num' size='5'/>
<button>Submit</button>
<br/><br/>
<textarea>The cursor will move in here</textarea>
jQuery
$(document).ready(function() {
$('button').click(function() {
var myval = parseInt($('#num').val()); //the number of spaces to move back
//code to move cursor back - starting from the END OF THE STATEMENT
});
});