I use the timer control at the following link: http://fgelinas.com/code/timepicker/timepicker.html
This works fine, but as soon as I reference jquery-ui-1.8.7.custom.css, I cannot get it to work. Do you know what could be the problem? I need jquery-ui-1.8.7.custom.css because I want to use the standard date picker on the same page.
thank
EDIT:
The problem is jquery.ui.core.css line 14:
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
When I comment on this line, everything works fine. Is this line really important? :)
EDIT No. 2:
The best solution is to edit this line:
.ui-helper-hidden-accessible { display:none;}
source
share