I have a problem using a clockpicker (http://weareoutman.github.io/clockpicker/).
It behaves like a textbox, and it does not show the clock. I do not know what the problem could be, since I included the necessary scripts and stylesheets in the <head>
of the html:
<link href="http://weareoutman.github.io/clockpicker/dist/jquery-clockpicker.min.css" rel="stylesheet" />
<script src="http://weareoutman.github.io/clockpicker/dist/jquery-clockpicker.min.js"></script>
I also downladed the assets, placed them in the project, and imported them like this:
<script th:src="@{/assets/js/plugins/clockpicker/clockpicker.js}" src="js/plugins/clockpicker/clockpicker.js"></script>
This is the html code that displays the textbox and the little clock icon:
<div class="input-group clockpicker" style="width: 50%; float: left;">
<input type="text" class="form-control" value="">
<span class="input-group-addon">
<span class="glyphicon glyphicon-time"></span>
</span>
</div>
AND the jquery activation:
$('.clockpicker').clockpicker();
I have absolutely no idea what needs to be done, so any advice is welcome. Thanks in advance!
EDIT: Fiddle here https://jsfiddle.net/q1skrndg/