I have 4 INPUT fields for month, day, hour, minute.
<input type="text" id="month" name="month" value="" />
<input type="text" id="day" name="day" value="" />
<input type="text" id="hour" name="hour" value="" />
<input type="text" id="minute" name="minute" value="" />
I am trying to get CURRENT time using JS and insert into each field using jQuery.
Can you help me to work out the right code to accomplish this?