<div ng-controller="ctrl1">
<form name="form1" ng-submit="submitForm()">
<input type="text" name="email" />
</form>
</div>
<div ng-controller="ctrl2">
<button> Submit </button>
</div>
Here from ctrl2, I want to trigger form submit action for a form which is in ctrl1
How to achieve this in angularJs?