Angular: Empty Fiddle

http://angularjs.org/

by rosstroha

HTML

<script src="http://code.angularjs.org/1.5.7/angular.js"></script>

<div ng-app="myApp">
  <div ng-controller="MyCtrl">
    <textarea rows="6" cols="45" placeholder="{{placeholder}}"></textarea>
  </div>
</div>

JavaScript

var myApp = angular.module('myApp',[]);

angular.module('myApp').controller('MyCtrl', MyCtrl);

function MyCtrl($scope) {
    $scope.placeholder = 'Address Line1\nAddress Line2\nCity State, Zip\nCountry';
}