I've started working on AngularJS while doing so I happens to use date in one of my input fields. For this I've choosen Jquery date picker. But the problem is when I use Jquery date picker independently It works properly. i.e
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
</html>
But when I use it in one of the angular partials, It's not working. I'm confused what might have happened there. Can you help me on this?