$(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: '2017-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: 'Evénement Planète Star Wars - Gaumont Disney Village (13 déc. 2017) - Esplanade François Truffaut, 77705 Marne la vallée', start: new Date(2017, 11, 13, 11, 00), end: new Date(2017, 11, 13, 21, 00), allDay: false, url: 'evenement-planete-star-wars-gaumont-disney-village-13-dec-2017--e5.html', backgroundColor: getBrandColor('danger') }, { title: 'Evénement Planète Star Wars - Gaumont Disney Village (16 déc. 2017) - Esplanade François Truffaut, 77705 Marne la vallée', start: new Date(2017, 11, 16, 11, 00), end: new Date(2017, 11, 16, 21, 00), allDay: false, url: 'evenement-planete-star-wars-gaumont-disney-village-16-dec-2017--e6.html', backgroundColor: getBrandColor('danger') }, { title: 'Evénement Planète Star Wars - Gaumont Disney Village (17 déc. 2017) - Esplanade François Truffaut, 77705 Marne la vallée', start: new Date(2017, 11, 17, 11, 00), end: new Date(2017, 11, 17, 21, 00), allDay: false, url: 'evenement-planete-star-wars-gaumont-disney-village-17-dec-2017--e7.html', backgroundColor: getBrandColor('danger') }, { title: 'Cinéma Gaumont Pathé Les Halles Chambéry - 4 Rue Derrière les Murs, 73000 Chambéry', start: new Date(2017, 11, 16, 11, 00), end: new Date(2017, 11, 16, 14, 00), allDay: false, url: 'cinema-gaumont-pathe-les-halles-chambery-e9.html', backgroundColor: getBrandColor('danger') }, { title: 'Cinéma Mega Castillet à Perpignan - Zac du, Rond-Point du Mas Rouma, 66000 Perpignan', start: new Date(2017, 11, 16, 15, 00), end: new Date(2017, 11, 16, 20, 30), allDay: false, url: 'cinema-mega-castillet-a-perpignan-e10.html', backgroundColor: getBrandColor('danger') }, { title: 'KINEPOLIS THIONVILLE : Concert Symphonique Live + film - 50 Route d\'Arlon 57100 Thionville', start: new Date(2017, 11, 15, 19, 15), end: new Date(2017, 11, 15, 23, 30), allDay: false, url: 'kinepolis-thionville-concert-symphonique-live-film--e11.html', backgroundColor: getBrandColor('danger') }, { title: 'CGR - Le Français - Bordeaux', start: new Date(2017, 11, 13, 19, 00), end: new Date(2017, 11, 13, 21, 15), allDay: false, url: 'cgr-le-francais--e12.html', backgroundColor: getBrandColor('danger') }, { title: 'Concours Cosplay et soldats du Premier Ordre à EuropaCorp Cinémas - 30 rue des Buissons – Roissy-en-France', start: new Date(2017, 11, 13, 14, 00), end: new Date(2017, 11, 13, 22, 00), allDay: false, url: 'concours-cosplay-et-soldats-du-premier-ordre-a-europacorp-cinemas-e13.html', backgroundColor: getBrandColor('danger') }, { title: 'Soldats du Premier Ordre à EuropaCorp Cinémas - 30 rue des Buissons – Roissy-en-France', start: new Date(2017, 11, 16, 14, 00), end: new Date(2017, 11, 16, 22, 00), allDay: false, url: 'soldats-du-premier-ordre-a-europacorp-cinemas-e14.html', backgroundColor: getBrandColor('danger') }, { title: 'Soldats du Premier Ordre à EuropaCorp Cinémas - 30 rue des Buissons – Roissy-en-France', start: new Date(2017, 11, 17, 14, 00), end: new Date(2017, 11, 17, 22, 00), allDay: false, url: 'soldats-du-premier-ordre-a-europacorp-cinemas-e15.html', backgroundColor: getBrandColor('danger') }, { title: 'Soldats du Premier Ordre à EuropaCorp Cinémas - 30 rue des Buissons – Roissy-en-France', start: new Date(2017, 11, 20, 14, 00), end: new Date(2017, 11, 20, 22, 00), allDay: false, url: 'soldats-du-premier-ordre-a-europacorp-cinemas-e16.html', backgroundColor: getBrandColor('danger') }, { title: 'Soldats du Premier Ordre à EuropaCorp Cinémas - 30 rue des Buissons – Roissy-en-France', start: new Date(2017, 11, 27, 14, 00), end: new Date(2017, 11, 27, 22, 00), allDay: false, url: 'soldats-du-premier-ordre-a-europacorp-cinemas-e17.html', backgroundColor: getBrandColor('danger') }, { title: 'Mégarama Bordeaux Bastide - 7 Quai des Queyries, 33100 Bordeaux', start: new Date(2017, 11, 13, 10, 45), end: new Date(2017, 11, 13, 22, 00), allDay: false, url: 'megarama-bordeaux-bastide-e18.html', backgroundColor: getBrandColor('danger') }, { title: 'Bar Otaku Social Club - 160 rue Saint-Denis 75002 PARIS', start: new Date(2017, 11, 13, 19, 00), end: new Date(2017, 11, 13, 23, 55), allDay: false, url: 'bar-otaku-social-club-e19.html', backgroundColor: getBrandColor('danger') }, ], firstDay: 1 }); });