I am trying to use the timepicker plugin, however if I put "input" after my CSS class, the time drop down menu goes back to only selecting hours, while if I do not use "input" I see my 15 minute increments, however they are floating away from the selected time area and can't be selected. I also don't know how to properly implement the CSS for timepicker overall.
CSS class is "timeselect"
Code:
$(document).ready(function () {
$.getScript('http://LASERFICHEWIN10/forms/js/jquery.timepicker.js', function() {
$('.timeselect input').timepicker({ 'step': 15 });
});
});
or
$(document).ready(function () {
$.getScript('http://LASERFICHEWIN10/forms/js/jquery.timepicker.js', function() {
$('.timeselect').timepicker({ 'step': 15 });
});
});
which results in the following images respectively:
And