How to use datepicker locally
The only way I can get datepicker to work is if I have it defined like this;
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
I need to be able to reference it like this;
<link href="resources/jquery-ui/jquery-ui.min.css" rel="stylesheet" type="text/css"> <link href="resources/jquery-ui/jquery-ui.css" rel="stylesheet" type="text/css"> <script src="resources/jquery-ui/jquery-ui.js" type="text/javascript" ></script> <script src="resources/jquery-ui/jquery-ui.min.js" type="text/javascript" ></script>
Any help would be greatly appreciated.