tooltip issue angular ui bootstrap
http://angularjs.org/
by afrankel
HTML
<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<script src="https://raw.github.com/angular-ui/bootstrap/gh-pages/ui-bootstrap-0.2.0.min.js"></script>
<script src="https://raw.github.com/angular-ui/bootstrap/gh-pages/ui-bootstrap-tpls-0.2.0.min.js"></script>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css">
<div ng-controller="MyCtrl">
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<label for="toolcheck0" tooltip="is the location correct?">
<input id="toolcheck0" type="text" ng-model="user.other_name" size="30">
</label>
<form id="someId" name="someName">
<tabs id="tab1">
<pane heading="First Pane">
<label for="toolcheck1" tooltip="is the location correct?">
<input id="toolcheck1" type="text" ng-model="user.first_name" size="30">
</label>
</pane>
<pane heading="Second Pane">
<label for="toolcheck2" tooltip="is the location correct?">
<input id="toolcheck2" type="text" ng-model="user.additional_info" size="30">
</label>
</pane>
</tabs>
<input class="btn-primary" type="submit" value="add">
</form>
</div>
JavaScript
var myApp = angular.module('myApp', ['ui.bootstrap']);
function MyCtrl($scope) {}