$(document).ready(function() { var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); var calendar = $('#calendar-drag').fullCalendar({ defaultView: 'listMonth', defaultDate: '2016-12-13', lang: 'fr', header: { left: '', center: '', right: 'title' }, editable: false, disableDragging: false, disableResizing: false, selectable: true, selectHelper: true, select: function(start, end, allDay) { var title = prompt('Event Title:'); if (title) { calendar.fullCalendar('renderEvent', { title: title, start: start, end: end, allDay: allDay }, true // make the event stick ); } calendar.fullCalendar('unselect'); }, events: [ { title: 'Le Grand Rex - 16 dec. - 19h - 1 boulevard Poissonnière 75002 Paris', start: new Date(2016, 11, 16, 19, 00), end: new Date(2016, 11, 16, 21, 20), allDay: false, url: 'le-grand-rex-16-dec-19h-e1.html', backgroundColor: getBrandColor('info') }, { title: 'Gaumont Grand Quevilly - 26, boulevard Pierre Brossolette 76120 Grand Quevilly', start: new Date(2016, 11, 14, 20, 30), end: new Date(2016, 11, 15, 00, 05), allDay: false, url: 'gaumont-grand-quevilly-e5.html', backgroundColor: getBrandColor('info') }, { title: 'Le Sénéchal - 1 rue du sénéchal 23000 Guéret', start: new Date(2016, 11, 16, 18, 45), end: new Date(2016, 11, 16, 23, 00), allDay: false, url: 'le-senechal--e4.html', backgroundColor: getBrandColor('info') }, { title: 'Pathé Masséna-Paris - 31 avenue Jean Médecin, 06200 NICE', start: new Date(2016, 11, 14, 10, 40), end: new Date(2016, 11, 14, 23, 00), allDay: false, url: 'pathe-massena-paris-e6.html', backgroundColor: getBrandColor('info') }, { title: 'Gaumont Talence Universités - Allée du 7ème Art - 33400 Talence', start: new Date(2016, 11, 14, 10, 00), end: new Date(2016, 11, 14, 22, 00), allDay: false, url: 'gaumont-talence-universites-e7.html', backgroundColor: getBrandColor('info') }, { title: 'Le Grand Rex - 14 dec. - 19h - 1 boulevard Poissonière 75002 Paris', start: new Date(2016, 11, 14, 19, 05), end: new Date(2016, 11, 14, 22, 00), allDay: false, url: 'le-grand-rex-14-dec-19h-e8.html', backgroundColor: getBrandColor('info') }, { title: 'Le Grand Rex - 14 dec. - 22h - 1 boulevard Poissonière 75002 Paris ', start: new Date(2016, 11, 14, 22, 00), end: new Date(2016, 11, 15, 00, 30), allDay: false, url: 'le-grand-rex-14-dec-22h-e9.html', backgroundColor: getBrandColor('info') }, { title: 'Cinéma Gaumont Multiplexe Angers - 1 Avenue des Droits de l\'Homme, 49100 Angers', start: new Date(2016, 11, 14, 19, 00), end: new Date(2016, 11, 14, 23, 55), allDay: false, url: 'cinema-gaumont-multiplexe-angers-e10.html', backgroundColor: getBrandColor('info') }, { title: 'PSW et les fans costumés à l\'UGC Paris 19ème - 166 Boulevard Macdonald, 75019 Paris', start: new Date(2016, 11, 14, 14, 00), end: new Date(2016, 11, 14, 20, 00), allDay: false, url: 'psw-et-les-fans-costumes-a-l-ugc-paris-19eme-e11.html', backgroundColor: getBrandColor('info') }, { title: 'Cin\'Amand - Rocade du Nord, Centre commercial Leclerc, 59230 Saint-Amand-les-Eaux', start: new Date(2016, 11, 14, 10, 30), end: new Date(2016, 11, 14, 23, 59), allDay: false, url: 'cin-amand-e12.html', backgroundColor: getBrandColor('info') }, { title: 'Cinéma Les Toiles - Boulevard Victor Hugo, 60800 Crépy-en-Valois', start: new Date(2016, 11, 14, 18, 00), end: new Date(2016, 11, 14, 23, 00), allDay: false, url: 'cinema-les-toiles-e14.html', backgroundColor: getBrandColor('info') }, { title: 'SIX N\'ETOILES - 48 Rue République, 83140 Six-Fours-les-Plages', start: new Date(2016, 11, 14, 21, 00), end: new Date(2016, 11, 14, 21, 10), allDay: false, url: 'six-n-etoiles-e15.html', backgroundColor: getBrandColor('info') }, { title: 'Gaumont Disney Village - Esplanade François Truffaut - Disney Village - 77705 Marne-la-Vallée', start: new Date(2016, 11, 17, 17, 30), end: new Date(2016, 11, 17, 19, 45), allDay: false, url: 'gaumont-disney-village-e17.html', backgroundColor: getBrandColor('info') }, { title: 'Gaumont Disney Village - Esplanade François Truffaut - Disney Village - 77705 Marne-la-Vallée', start: new Date(2016, 11, 18, 11, 00), end: new Date(2016, 11, 18, 20, 30), allDay: false, url: 'gaumont-disney-village-e16.html', backgroundColor: getBrandColor('info') }, { title: 'Gaumont-Pathé Coquelles - Centre commercial Cité Europe, 10 Boulevard du Kent, 62231 Coquelles ', start: new Date(2016, 11, 14, 13, 00), end: new Date(2016, 11, 14, 18, 00), allDay: false, url: 'gaumont-pathe-coquelles-e18.html', backgroundColor: getBrandColor('info') }, { title: 'la Strada - Mouans-Sartoux (06)', start: new Date(2016, 11, 17, 13, 00), end: new Date(2016, 11, 17, 16, 00), allDay: false, url: 'la-strada-e19.html', backgroundColor: getBrandColor('info') }, ], firstDay: 1 }); });