Click to Edit with AngularJS
Example 1
by yahyaKACEM
HTML
<div ng-app>
<div ng-controller="ClickToEditCtrl">
<div ng-hide="editorEnabled">
{{title}}
<a href="#" ng-click="editorEnabled=!editorEnabled">Edit title</a>
</div>
<div ng-show="editorEnabled">
<input ng-model="title">
<a href="#" ng-click="editorEnabled=!editorEnabled">Done editing?</a>
</div>
</div>
</div>
JavaScript
function ClickToEditCtrl($scope) {
$scope.title = "Welcome to this demo!";
}