Introduction to angularJS
In simple terms AngularJs is JavaScript library, but powerful tool.
Tremendous features enable you to work more effective.
Be low is the sample template to configure the angularJs in your website or template:
<!doctype html>
<html ng-app>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.js"></script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" placeholder="Enter a name here">
<hr>
<h1>Hello {{yourName}}!</h1>
</div>
</body>
</html>
No comments:
Post a Comment