<!doctype html>
<html ng-app="demo">
<head>
  <meta charset="utf-8">
  <title>datepicker with AngularJS and jQuery</title>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css">
</head>
<body ng-controller="myCtrl">

<input type="text" ng-model="date" datepicker/>
{{date}}

<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.3/jquery-ui.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.11/angular.min.js"></script>
<script src="directive.js"></script>
<!-- tested on AngularJS 1.3.11 and 1.0.4 -->
</script>
</body>
</html>