I get an [ng:areq] Error, might be silly, but I didn't see through it.
Done some research found nothing helpful.
Demo code:
<!DOCTYPE html> <html ng-app> <head lang="en"> <meta http-equiv="Content-Type" content="text/javascript; charset=utf-8" /> <title>Angular Third Example</title> <script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular.min.js"></script> <script> function NameCtrl($scope) { $scope.firstName = 'John'; $scope.lastName = 'Doe'; } </script> </head> <body ng-controller="NameCtrl"> First Name: <input ng-model="firstName" type="text" /> <br /> Last Name: <input ng-model="lastName" type="text" /> <br /> Hello {{firstName}} {{lastName}} </body> </html>