SHARE
TWEET

Untitled

a guest Dec 26th, 2014 146 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   3         <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
  2.   4         </head>
  3.   5         <body >
  4.   6         <div ng-app="">
  5.   7                 <input type="text" ng-model="name"> </input>
  6.   8                 <h3> {{name }} </h3>
  7.   9                
  8.  10
  9.  11                 <h1> Meal of the day {{favorite_meal}} </h1>
  10.  12
  11.  13
  12.  14                 <select ng-model="favorite_meal">
  13.  15                         <option ng-repeat="c in meals"> {{c}} </option>
  14.  16                 </select>
  15.  17                
  16.  18                 <script>                
  17.  19                         meals = [ 'eggs' ,  'pizza' , 'soup' ];
  18.  20                 </script>
  19.  21         </div>
  20.  22         </body>
  21.  23 </html>
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top