Jquery datepicker: highlight 'today' when clicked? -
i have jquery datepicker on site, calendar visible. problem cannot seem select 'today'. well, can, doesn't change highlight other days do, keeps 'today-look' , pretty confusing.
- is there built-in way how highlight today when selected (as other elements are)? <- preferred
- is there way hide today's highlight js?
thank you!
you can override jquery ui css.try jsfiddle
/*selected date */ .ui-state-active{ color:red !important; } /*todays date*/ .ui-state-highlight{ border:none !important; }
Comments
Post a Comment