I can call the focus() method on an input element on my page and it will bring it into view however I can't appear to actually click into the field?
The input is as follows
<input alt="ACCEPT_TEXT"
title="ACCEPT_TEXT"
placeholder="I Understand"
ng-model="leafNode.transMap[translationLanguage].translation"
id="leafNode_82"
class="ng-pristine ng-valid ng-not-empty ng-touched">
$($('input[alt^="ACCEPT_TEXT"]')[0]).focus(); // works
$($('input[alt^="ACCEPT_TEXT"]')[0]).click(); // has no effect
When clicked with the mouse the cursor goes into the input and it goes yellow but right now it just focus and doesn't insert the cursor.
This has me a little blocked at the minute so any help greatly appreciated.
Thanks Mark.
