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

Popular posts from this blog

Ansible - ERROR! the field 'hosts' is required but was not set -

customize file_field button ruby on rails -

SoapUI on windows 10 - high DPI/4K scaling issue -