AngularJS Live Example

by webvitaly

HTML

<!-- AngularJS Example Code: -->

<script>
  function Ctrl() {
    this.color = 'blue';
  }
</script>
<div ng:controller="Ctrl">
  <form name="myForm">
    <input type="radio" ng:model="color" value="red">  Red <br/>
    <input type="radio" ng:model="color" value="green"> Green <br/>
    <input type="radio" ng:model="color" value="blue"> Blue <br/>
  </form>
  <tt>color = {{color}}</tt><br/>
</div>

CSS

.ng-invalid { border: 1px solid red; } 
body { font-family: Arial,Helvetica,sans-serif; }
body, td, th { font-size: 14px; margin: 0; }
table { border-collapse: separate; border-spacing: 2px; display: table; margin-bottom: 0; margin-top: 0; -moz-box-sizing: border-box; text-indent: 0; }
a:link, a:visited, a:hover { color: #5D6DB6; text-decoration: none; }
.error { color: red; }