javascript - How to highlight a particular date in jquery ui datepicker -
i doing project on task reminder user can enter tasks dates.for overview of user's task using jquery ui datepicker(inline).i want highlight dates given user. thank in advance!!
try with
$(function() { $("#datepicker").datepicker({ beforeshowday: function(d) { var = new date(2012, 3, 10); // april 10, 2012 var b = new date(2012, 3, 20); // april 20, 2012 return [true, <= d && d <= b ? "my-class" : ""]; } }); });
here example: http://jsfiddle.net/qaeuj/
see answer: highlight dates in jquery ui datepicker
Comments
Post a Comment