html type=time

Associate
Joined
5 Jun 2004
Posts
1,341
Location
Hythe, Hants
My google skills are failing me today.

Anyone know of a way to disable/read only the container of a time input but allow the spin buttons to still operate?
 
You could disable the keydown event using javascript maybe?

Then the input would only populate from the time selector control
 
You could use a jquery ui spinner and add a disabled attribute to the input selector.

E. G. $('selector').attr(disabled, 'disabled');
 
Back
Top Bottom