If you face this issue, you can solve this by using either JQUERY or Javascript
JQUERY:
$(".input-value").val("")
Javascript:
document.getElementById("input-value").value = ""
This will clear all the spaces from textarea and it wont start at the middle. Cursor will be at top left.