D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
chantastic
Full window
Github gist
Full Stack: Angular 101 Workshop (concepts)
<!doctype html> <!-- exercise 1 --> <!-- bootstraping an angular app --> <html ng-app> <head> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.8/angular.min.js"></script> </head> <body> <!-- exercise 2 --> <!-- directive/binding basics --> <label> Name: <input type="text" ng-model="name" placeholder="Enter a name here"> </label> <h1 ng-show="name">Ohai {{ name }}!</h1> <!-- exercise 3 --> <!-- more on directives --> <span ng-init="people = [{name: 'Scott'},{name: 'Kevin'},{name: 'Micahel'}]"></span> <h3> List of names </h1> <ul> <li ng-repeat="person in people"> {{ person.name }} </li> </ul> </body> </html>
https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.8/angular.min.js