$(document).ready(function(){ $("#calendario").fullCalendar({ locale: 'es', schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives', defaultDate: '2017-12-21', defaultView: 'agendaWeek', visibleRange:{ start: '2017-12-21', end: '2017-12-23' }, allDaySlot: false, minTime: "08:00:00", maxTime: "22:00:00", resources: [ { id:"s1", title: "Salon 1"}, { id:"s2", title: "Salon 2"}, ], events: [ { id:"1", resourceid: 's1', title: "Charla Pedorra", start: "2017-12-21T12:00", end: "2017-12-21T13:00" } ] }); });