I am experiencing a strange behavior with my textarea. Whenever I click inside it, the cursor appears at the clicked position rather than the beginning of the text area like it does here on SO when posting a question. Is there a way to make the cursor always appear at the top left when clicking any part of the textarea?
EDIT:
The reason I need to fix this is because extra spaces are being saved in the database.
Below is some code :
<textarea class="passage" name="texti" rows="5" cols="10">
</textarea>
CSS:
.passage {
color: #333;
font-size: 12px;
height: 80px;
width: 279px;
}