//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['The Roots','The Colosseum At Caesars Windsor','Windsor, Canada','Friday','6/20/2025','8:00 PM','7108223','The-Roots-6-20-2025'],['The Roots','Rebel - Toronto','Toronto, Canada','Saturday','6/21/2025','6:00 PM','7111351','The-Roots-6-21-2025'],['The Roots','Ravinia Pavilion','Highland Park, IL','Friday','6/27/2025','7:00 PM','7039000','The-Roots-6-27-2025'],['The Roots','Wolf Trap National Park for the Performing Arts','Vienna, VA','Sunday','6/29/2025','8:00 PM','6982784','The-Roots-6-29-2025'],['The Roots','Sun Patio at Mohegan Sun','Uncasville, CT','Saturday','8/2/2025','9:00 PM','7063981','The-Roots-8-2-2025'],['Reverb Backyard Music Festival: The Roots & Danielle Ponder - Sunday','Phillips Backyard','Victoria, Canada','Sunday','8/10/2025','3:00 PM','7199573','Reverb-Backyard-Music-Festival--The-Roots---Danielle-Ponder---Sunday-8-10-2025'],['The Roots','Pioneer Courthouse Square','Portland, OR','Thursday','8/21/2025','7:00 PM','6982734','The-Roots-8-21-2025'],['The Roots','Paradise Cove At River Spirit','Tulsa, OK','Saturday','11/29/2025','8:00 PM','7006684','The-Roots-11-29-2025'],['New Year's Eve with The Roots','Walt Disney Concert Hall','Los Angeles, CA','Wednesday','12/31/2025','7:00 PM','7212890','New-Year-s-Eve-with-The-Roots-12-31-2025'],['New Year's Eve with The Roots','Walt Disney Concert Hall','Los Angeles, CA','Wednesday','12/31/2025','10:30 PM','7212891','New-Year-s-Eve-with-The-Roots-12-31-2025']],'The Roots','http://www.ticketnetwork.com/en/search/?text=The Roots');