JSFiddle - React, Tailwind, and code Playground
by provegard
HTML
<script src="https://code.angularjs.org/1.4.7/angular.js"></script>
<div ng-controller="Ctrl1">
<form ng-submit="">
Click: <button type="Submit" listen>Submit</button>
</form>
</div>
JavaScript
angular
.module("myApp", [""]);
.controller("Ctrl1", function () {
})
.directive("listen", function () {
return {
link: function (scope, element, attrs) {
alert("listener");
element.on("click", function() {
alert("click");
});
}
};
});