Angular+JQ+Bootstrap

by andytjoslin

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="code.angularjs.org/1.0.0rc8/angular-1.0.0rc8.js"></script>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<div ng-controller="MyCtrl">
    {{hello}}
    <input ng-model="hello">
</div>

JavaScript

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

function MyCtrl($scope) {
    
}