Programming Examples
AngularJS Program to change the background color of box
Write a AngularJS Program to change the background color of box by user input.
Solution
<!doctype html>
<html>
<head>
<script language="javascript" src="angular.min.js"></script>
</head>
<body>
<h1>Background Changer</h1>
<div ng-app="" ng-init="myCol='lightblue'">
<input style="background-color:{{myCol}}" ng-model="myCol">
</div>
</body>
</html>