How have a link like
<a href="" ng-click="someAction()">Some text</a>
and I want to invoke ngClick
action from jQuery:
$('a').click()
But it doesn't work: someAction()
not invoked. Also didn't work
$('a').trigger('click')
Is it possible to invoke someAction()
from jQuery?