Skip to content

Instantly share code, notes, and snippets.

@ronapelbaum
Last active July 31, 2016 18:06
Show Gist options
  • Select an option

  • Save ronapelbaum/a7c4bb0abb7ea505e26adda78270190a to your computer and use it in GitHub Desktop.

Select an option

Save ronapelbaum/a7c4bb0abb7ea505e26adda78270190a to your computer and use it in GitHub Desktop.
angular directive + jquery
angular.module('app',[])
.directive('dir1',function(){
return {
template: '<div id="myId">Hello World!</div>',
link: function(scope, element){
element.find('#myId').css('color','green');
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment