How to style jquery UI datepicker?
Open http://jqueryui.com/demos/datepicker/
You can select a date. I need to style the calendar so that when you click next the selected day will get highlighted on the next months ( when you click back a开发者_C百科nd forth)
Just use FireBug or a similar tool to check the css classes and properties and customize them..
The style of jQuery-ui widget is define in the css file you downloaded with the pack of scripts You can choose the theme you want in the page to customize download
You are not just styling the selected day of the next month to be highlighted. You should actually MOVE the selection to that day of next month. You could do it by handling the onChangeMonthYear
event
精彩评论