New To jQuery. Can't Figure Out Why This Doesn't Work

New To jQuery. Can't Figure Out Why This Doesn't Work

Any help on this appreciated.  I am completely new to jQuery.  I am definitely missing someting...

Thanks in advance for your time...

<!doctype html>
<html lang="en">
<head>
  
    <meta charset="utf-8">
    <title>jQuery UI Datepicker - Default functionality</title>
    
    <link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
    <link rel="stylesheet" href="/resources/demos/style.css">
  
    <script src="/Scripts/jquery-ui-1.11.2.js"></script>
    <script src="/Scripts/jquery-ui-1.11.2.min.js"></script>
    <script src="/Scripts/jquery.timepicker.js"></script>
    <script src="/Scripts/jquery.timepicker.min.js"></script>
    
    <script>
        $(function() {$("#datepicker").datepicker();});
        $(function() {$('#basicExample').timepicker();});
    </script>
 
</head>
<body>
 
<p>Date: <input type="text" id="datepicker" /></p>
<p>Time: <input id="basicExample" type="text" class="time" /></p>
 
 
</body>
</html>