Talvez esto te ayude!
Código HTML:
<html>
<head>
<title></title>
<script>
function contar(ele){
if(typeof ele.selectionStart != 'undefined')
alert(ele.selectionStart);
}
</script>
</head>
<body>
<textarea rows="8" cols="30" onclick="contar(this)">Un conjunto de frases</textarea>
</body>
</html>