$('#box').calendar({
width:200,
height:200,
//fit:true,
border:true,
firstDay:0,
weeks:['S','M','T','W','T','W','S'],
months:['jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec'],
//year:2015,
//month:11,
current: new Date(2014,7,1),
formatter:function(date){
return '#'+date.getDate();
},
styler:function(date){
if(date.getDay()==1){
return 'background-color:#ccc';
}
},
onSelect:function(date){
alert(date.getFullYear()+":"+(date.getMonth()+1)+":"+date.getDate());
},
});
$('#box').calendar('moveTo',new Date(2015,1,1));