I have a form element created with AngularJS with a submit button within it and I would like to put this button outside of this form. How can I do that with Angular and have my
The clue is using the ngForm directive and assign a form name attribute which references to the $rootScope.
Submit
That works.