When I set a field to type Time in the forms designer it creates 2 fields, a time fields and an AM/PM field. This doesn't work for my purposes and I like the way the field works when setting it to type time using the following javascript.
$('.start input').attr("type", "time");
Now I would like all the fields within a table to be this same type of field, but javascript can only change the first row.
For stability purposes I would like to use CSS to ensure all these fields are a time field from the start. Is there anyway to set this attribute in CSS, I can't find any examples of setting attributes in CSS on a web search.