I am trying to use jquery to auto populate an input time field. It works fine; but it applies the time to my other button. How do I only refer it to my input type time field?
Any help is most appreciated. Thanks
HTML
<input type="time" value="" />
<input type="button" value=""/>
jquery
$("input").val( "17:39:57" );
use attribute equal selector
fiddle