Guest User

Untitled

a guest
Jan 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $('#whatever').datepicker({
  2. beforeShowDay: function(date) {
  3. if (date == myDate) {
  4. return [true, 'css-class-to-highlight', 'tooltipText'];
  5.  
  6. }
  7. }
  8. });
Add Comment
Please, Sign In to add comment