//
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-02A
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([['Zoe Haitian Independence Day Party','Big Night Live','Boston, MA','Thursday','1/1/2026','10:00 PM','7593195','Zoe-Haitian-Independence-Day-Party-1-1-2026'],['Tecate Pal Norte (Time: TBD): The Killers, Zoe & The Lumineers - Sunday','Fundidora Park','Monterrey, Mexico','Sunday','3/29/2026','2:00 PM','7557614','Tecate-Pal-Norte--Time--TBD---The-Killers--Zoe---The-Lumineers---Sunday-3-29-2026'],['Zoe','The Theater At Madison Square Garden','New York, NY','Wednesday','4/22/2026','8:30 PM','7566741','Zoe-4-22-2026'],['Gorilla Zoe','Iron City - Birmingham','Birmingham, AL','Friday','4/24/2026','8:00 PM','7196484','Gorilla-Zoe-4-24-2026'],['Gorilla Zoe','Exit In','Nashville, TN','Saturday','4/25/2026','7:00 PM','7157712','Gorilla-Zoe-4-25-2026'],['Zoe','Rosemont Theatre','Rosemont, IL','Saturday','4/25/2026','8:00 PM','7566742','Zoe-4-25-2026'],['Zoe','Rosemont Theatre','Rosemont, IL','Sunday','4/26/2026','8:00 PM','7580613','Zoe-4-26-2026'],['Zoe','YouTube Theater at Hollywood Park','Inglewood, CA','Wednesday','4/29/2026','8:00 PM','7566743','Zoe-4-29-2026'],['Zoe','YouTube Theater at Hollywood Park','Inglewood, CA','Thursday','4/30/2026','8:00 PM','7577229','Zoe-4-30-2026']],'zoe','http://www.ticketnetwork.com/en/search/?text=zoe');