I\'m using the bootstrap-datepicker to check the days where my website got sales and I want to display or highlight the dates there was at least one sale. I can pass the dat
$('#xxx').datepicker() .on('onRender', function(ev){ if (ev.date.valueOf() == your date){ return 'highlight'; } });
Might do the trick, although I am not sure.