//
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-04A
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([['Fooz Fighters - Foo Fighters Tribute','Riviera Theatre - NY','North Tonawanda, NY','Friday','3/14/2025','7:30 PM','6768692','Fooz-Fighters---Foo-Fighters-Tribute-3-14-2025'],['Fooz Fighters - Foo Fighters Tribute','Miniaci Performing Arts Center','Fort Lauderdale, FL','Saturday','3/22/2025','8:00 PM','6903882','Fooz-Fighters---Foo-Fighters-Tribute-3-22-2025'],['Joe Hero - Foo Fighters Tribute','Amos' Southend','Charlotte, NC','Friday','4/4/2025','8:00 PM','6923203','Joe-Hero---Foo-Fighters-Tribute-4-4-2025'],['The Mixtapes - Nirvana and Foo Fighters Tributes','George's Majestic Lounge','Fayetteville, AR','Saturday','4/12/2025','8:30 PM','7005744','The-Mixtapes---Nirvana-and-Foo-Fighters-Tributes-4-12-2025'],['Back and Forth - Foo Fighters Tribute','John, James and Clara Knight Stage','Akron, OH','Saturday','4/19/2025','7:30 PM','6955776','Back-and-Forth---Foo-Fighters-Tribute-4-19-2025'],['Fooz Fighters - Foo Fighters Tribute','Marquee Theatre - AZ','Tempe, AZ','Saturday','4/26/2025','6:00 PM','7030792','Fooz-Fighters---Foo-Fighters-Tribute-4-26-2025'],['Back and Forth - Foo Fighters Tribute','Photo City Music Hall','Rochester, NY','Friday','5/23/2025','7:00 PM','7019335','Back-and-Forth---Foo-Fighters-Tribute-5-23-2025'],['Red NOT Chili Peppers - A Tribute to Red Hot Chili Peppers & Fooz Fighters - Foo Fighters Tribute','SERVPRO Richmond Pavilion','Glen Allen, VA','Thursday','8/14/2025','6:00 PM','6971569','Red-NOT-Chili-Peppers---A-Tribute-to-Red-Hot-Chili-Peppers---Fooz-Fighters---Foo-Fighters-Tribute-8-14-2025']],'Foo Fighters','http://www.ticketnetwork.com/en/search/?text=Foo%20Fighters');