Finally now I start work on AngularJS. I like this javascript Framework.
AngularJS is open source, completely free to used. For use of AngularJS you need just basic knowledge of javascript, Ajax and HTML.
Here I display basic example of AngularJS:
<!doctype html>
<html ng-app>
<head>
<script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
</head>
<body>
<div>
<label>My Name:</label>
<input type = "text" ng-model = "MyName" placeholder = "Enter a name here">
<hr />
<h1>Hello {{MyName}}!</h1>
</div>
</body>
</html>
Enjoy!
No comments:
Post a Comment