AngularJS Example:

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div ng-app ng-controller="MyCtrl">
    <input type="number" placeholder="1280" ng-model="containerWidth">
        {{containerWidth+40}}
</div>

JavaScript

function MyCtrl($scope) {
}