My textarea is behaving very strange, when I click inside it .. the cursor appears there when I click, if I click on the middle of the textarea it appears there, and I'd like it to appear on the beginning wherever I click inside, like here on SO when asking question, wherever you click inside textarea it takes your cursor to the topmost left. What can I do to fix this?
EDIT:
The reason for why I wanna fix this is because I get extra spaces in database.
Here is some code :
<textarea class="passage" name="texti" rows="5" cols="10">
</textarea>
CSS:
.passage {
color: #333;
font-size: 12px;
height: 80px;
width: 279px;
}