I’m trying to use the DateTimePicker I found for a school project but the field just returns blank
I followed the example on the website and a couple more examples I found online but none of them worked for me. I added the .css and .js files to the right pathways.
I don’t have too much experience with jQuery so there might be something I’m missing.
I appreciate any advice you guys can give me for this
```
<head>
<link rel="stylesheet" type=text/css href="css/jquery.datetimepicker.css">
<script src="js/jquery.datetimepicker.full.js"></script>
<script src="js/jquery.js"></script>
</head>
....
<li>
<input id ="datetimepicker" type="text">
</li>
<script>
$('#datetimepicker').datetimepicker();
</script>
```
New contributor
Alex gonzalez is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.