I am having an issue where I need to use a JQ plugin on elements that are defined in an AngularJS View template. Typically, I would call the plugin like this:
$(function() {
$( "#selectable" ).selectable();
});
However, this approach is not working because the id="selectable"
element is not visible until after AngularJS has finished its compiling. Placing this code inside the controller was not a successful solution.