Ok, entonces, en la línea
$("#tuBoton").click(function(){ colocala variable que recibes, quedando de la siguiente forma:
Código Javascript
:
Ver original$("#tuBoton").click(function(fechaBaseDatos){
var dates = ['11-10-2013', '11-12-2013'];
//tips are optional but good to have
$('#fechaBitacora1').datepicker({
dateFormat: 'dd/mm/yy',
beforeShowDay: highlightDays,
showOtherMonths: true,
numberOfMonths: 1,
});
function highlightDays(date) {
for (var i = 0; i < dates.length; i++) {
if (new Date(dates[i]).toString() == date.toString()) {
return [true, 'highlight', ];
}
}
return [true, ''];
}
});