This question boils down to needing to get the cursor position of a element in a directive. In short, all I need to work in this.
v
This also seems to work
scope.testValue = textArea[0].selectionStart;
The syntax you are looking for is:
scope.testValue = textArea.prop("selectionStart");