Skip to content

Instantly share code, notes, and snippets.

View ganarajpr's full-sized avatar

Ganaraj P R ganarajpr

  • Zoro UK
  • London
View GitHub Profile
<div data-bind="text : myContent"></div>
$scope.myContent = "Hello World";
<div>{{myContent}}</div>
<div ng-bind="myContent"></div>
<html>
<head>
<title>Hello</title>
</head>
<body></body>
</html>
var ngSubmitDirective = ngDirective(function(scope, element, attrs) {
element.bind('submit', function() {
return scope.$apply(attrs.ngSubmit);
});
});