AngularJS Example:

by devangkantharia

HTML

<div ng-app>
  <div ng-controller="AppCtrl">
    <label>Name:</label>
    <input type="text" ng-model="searchText" placeholder="Enter a name here">
      <button ng-click="check()">Check!</button>
    <hr>
    <h1>Hello {{searchText}}!</h1>
  </div>
</div>

CSS

</style> <!-- Ugly Hack due to jsFiddle issue: http://goo.gl/BUfGZ --> 
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="http://code.angularjs.org/angular-1.0.0rc8.min.js"></script>
<style>

JavaScript

/*
*******************************
Ugly Hack due to jsFiddle issue
*******************************
*/

function AppCtrl($scope){

$scope.check = function () {
    console.log($scope.searchText);
}    
}