2015 ~ February 17
2016 ~ February 09
2017 ~ February 28
2018 ~ February 13
2019 ~ March 5
2020 ~ February 25
2021 ~ February 16
New Orleans Mardi Gras is Mardi Gras in New Orleans, Louisiana, one of the most famous Carnival celebrations.
The New Orleans Carnival season, with roots in Catholic ritual, starts on Twelfth Night (January 6). The season of parades, balls (some of them masquerade balls), and king cake parties begins on that date.
From about two weeks before, through Fat Tuesday, there is at least one major parade each day. The largest and most elaborate parades take place the last five days of the season. In the final week of Carnival many events large and small occur throughout New Orleans and surrounding communities. Mardi Gras is French for Fat Tuesday.
The parades in New Orleans are organized by Carnival krewes. Krewe float riders toss throws to the crowds; the most common throws are strings of cheap colorful beads, doubloons (aluminium or wooden dollar-sized coins usually impressed with a krewe logo), decorated plastic throw cups, and small inexpensive toys. Major krewes follow the same parade schedule and route each year.
While many tourists center their Mardi Gras season activities on Bourbon Street and the French Quarter, none of the major Mardi Gras parades enter the Quarter because of its narrow streets and overhead obstructions. Instead, major parades originate in the Uptown and Mid-City districts and follow a route along St. Charles Avenue and Canal Street, on the upriver side of the French Quarter.
To most New Orleanians, "Mardi Gras" refers only to the final and most elaborate day of the Carnival Season; visitors tend to refer to the entire Carnival as "Mardi Gras." Some locals have thus started to refer to the final day of Carnival as "Mardi Gras Day" to avoid confusion.
The traditional colors of Mardi Gras are purple, gold, and green. These are said to have been chosen in 1892, when the Rex Parade theme "Symbolism of Colors" gave the colors their meanings. The colors in turn influenced the official colors of Louisiana State University (purple and gold) and Tulane University (blue and green). Before and during Mardi Gras, purple, green, and gold fabric is certainly the most popular colors to wear all at once.
';
cal += month_of_year[month] + ' ' + year + '' + TD_end + TR_end;
cal += TR_start;
///////////////////////////////////
// DO NOT EDIT BELOW THIS POINT //
///////////////////////////////////
// LOOPS FOR EACH DAY OF WEEK
for(index=0; index < DAYS_OF_WEEK; index++) {
// PRINTS DAY
cal += TD_start + day_of_week[index] + TD_end;
}
cal += TD_end + TR_end;
cal += TR_start;
// FILL IN BLANK GAPS UNTIL TODAY'S DAY
for(index=0; index < dateObj.getDay(); index++) {
cal += TD_start + ' ' + TD_end;
}
// LOOPS FOR EACH DAY IN CALENDAR
for(index=0; index < DAYS_OF_MONTH; index++) {
if( dateObj.getDate() > index ) {
// RETURNS THE NEXT DAY TO PRINT
week_day =dateObj.getDay();
// START NEW ROW FOR FIRST DAY OF WEEK
if(week_day == 0) {
cal += TR_start;
}
if(week_day != DAYS_OF_WEEK) {
// SET VARIABLE INSIDE LOOP FOR INCREMENTING PURPOSES
var day = dateObj.getDate();
// PRINTS DAY
cal += TD_start + "" + day + "" + TD_end;
}
// END ROW FOR LAST DAY OF WEEK
if(week_day == DAYS_OF_WEEK) {
cal += TR_end;
}
}
// INCREMENTS UNTIL END OF THE MONTH
dateObj.setDate(dateObj.getDate()+1);
}// end for loop
cal += '