date picker javascript not working

Solutions on MaxInterview for date picker javascript not working by the best coders in the world

showing results for - "date picker javascript not working"
Angela
13 Aug 2018
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
2<head>
3<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
4<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
5<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.js"></script>
6<script>
7$(function() {
8    $( "#datepicker" ).datepicker();
9});
10</script>
11</head>
12<body>
13    <div class="demo">
14    <p>Date: <input type="text" id="datepicker"></p>
15    </div><!-- End demo -->
16</body>
17</HTML>