Angular+JQ+Bootstrap
by andytjoslin
HTML
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="http://code.angularjs.org/1.0.0/angular-1.0.0.js"></script>
<div ng-controller="MyCtrl">
<form ng-submit="action()">
<input ng-model="name" type="hidden">
<input type="submit">
</form>
</div>
JavaScript
var app=angular.module('myApp', []);
function MyCtrl($scope) {
$scope.name = "1";
$scope.action = function(){
alert($scope.name);
}
}