I am supposed to use a jquery plugin to fill in some text fields. My professor is almost completely unresponsive about it when I ask him for help. Using the pickadate Jquery plugin, add a date picker and time picker to two <input> fields.
<!doctype html>
<html>
<head>
<title>Exercise 11A</title>
<script type = "text/javascript"
src = "http://plugins.jquery.com/pickadate/"></script>
<script type = "text/javascript" language = "javascript">
$('.datepicker').pickadate()
</script>
</head>
<body onload = 'pickadate'>
Birth Date: <input type="text" id="birthdate" readonly><br/>
Birth Time: <input type="text" id="birthtime" readonly>
</body>
</html>
This is just one that I've tried, but he will not tell me how to actually include the plugin to be used in the code. Everything I've looked up has been vague, so now I'm reaching out to the place where people actually teach me things. I tried saving the plugin to my machine first, and tried linking to it's path from there, but the same result. When I inspect the elements, the page cannot load the resource. I'm just looking for some help with syntax I suppose.