I have a single line field that I'm using as a time selector using the following javascript:
$(document).ready(function () { $.getScript('https://docs.________.com/Forms/lib/jquery-timepicker/jquery.timepicker.js', function() { $('.time input').timepicker({ 'step': 5, 'scrollDefault': 'now' }); }); });
This works great and creates a drop-down time selector with 5 min increments. I'd like to have the form open and that field pre-populated with the current time. How would I go about doing this?