Skip to content

Instantly share code, notes, and snippets.

@ronapelbaum
Created July 31, 2016 17:54
Show Gist options
  • Save ronapelbaum/5da7135fe9846996a9e801fd716bfb6b to your computer and use it in GitHub Desktop.
Save ronapelbaum/5da7135fe9846996a9e801fd716bfb6b 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){
$('#myId').css('color','green');
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment