11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
$(function()
|
|
{
|
|
selectNext();
|
|
$('#date').change(function()
|
|
{
|
|
var selectTime = $(this).val() != today ? start : nowTime;
|
|
$('#begin').val(selectTime);
|
|
selectNext();
|
|
})
|
|
})
|