Last active
July 31, 2016 18:06
-
-
Save ronapelbaum/a7c4bb0abb7ea505e26adda78270190a to your computer and use it in GitHub Desktop.
angular directive + jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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