I have a select tag as follows:
and I\'m using a jQueryUI c
Ugh - this is terrible practice - but you can use angular.element and get the scope from an element that resides within the target controller.
Example:
Javascript:
var scope = angular.element("#test").scope();
scope.doSomething();
Your scope variable now has access to all the methods defined on the myApp controller.