I receive this error in Google Chrome using this script in the HEADER.
Could you help me out to understand what is wrong?
**Uncaught Syntax Error: Unexpected Token ILLEGAL**
<script>
$(document).ready(function () {
$('#DateTimeStart).datetimepicker();
});
</script>
For a start you should specify the type of your script blocks e.g.
But the actual problem is that you don’t have a second apostrophe after DateTimeStart e.g.
EDIT: Removed my bad advice 🙂