//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Tributes to Chris Stapleton and Eric Church: Tennessee Whiskey & Ultimate Eric Church Experience','Warner Vineyards','Paw Paw, MI','Sunday','8/23/2026','7:00 PM','8037871','Tributes-to-Chris-Stapleton-and-Eric-Church--Tennessee-Whiskey---Ultimate-Eric-Church-Experience-8-23-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Carter Faith','Northwell at Jones Beach Theater','Wantagh, NY','Wednesday','8/26/2026','7:30 PM','7668745','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Carter-Faith-8-26-2026'],['Tennessee Whiskey - Tribute to Chris Stapleton','Devon Lakeshore Amphitheater','Decatur, IL','Friday','8/28/2026','7:00 PM','8014170','Tennessee-Whiskey---Tribute-to-Chris-Stapleton-8-28-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Carter Faith','Freedom Mortgage Pavilion','Camden, NJ','Friday','8/28/2026','7:30 PM','7668746','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Carter-Faith-8-28-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Carter Faith','Freedom Mortgage Pavilion','Camden, NJ','Saturday','8/29/2026','7:30 PM','7692492','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Carter-Faith-8-29-2026'],['The Staples - Tribute to Chris Stapleton','Belly Up Tavern','Solana Beach, CA','Thursday','9/3/2026','8:00 PM','8019528','The-Staples---Tribute-to-Chris-Stapleton-9-3-2026'],['Tennessee Whiskey - Tribute to Chris Stapleton','Side Lawn at Sunset Station','Henderson, NV','Saturday','9/12/2026','8:00 PM','8163579','Tennessee-Whiskey---Tribute-to-Chris-Stapleton-9-12-2026'],['Bourbon & Beyond Festival: Foo Fighters, Mumford and Sons, Chris Stapleton & Dave Matthews Band - 4 Day Pass','Highland Festival Grounds at Kentucky Expo Center','Louisville, KY','Thursday','9/24/2026','TBD','7428792','Bourbon---Beyond-Festival--Foo-Fighters--Mumford-and-Sons--Chris-Stapleton---Dave-Matthews-Band---4-Day-Pass-9-24-2026'],['Bourbon & Beyond Festival: Chris Stapleton & The Red Clay Strays - Saturday','Highland Festival Grounds at Kentucky Expo Center','Louisville, KY','Saturday','9/26/2026','11:00 AM','7428795','Bourbon---Beyond-Festival--Chris-Stapleton---The-Red-Clay-Strays---Saturday-9-26-2026'],['Ultimate Salute To Chris Stapleton & Eric Church','Arcada Theatre','Saint Charles, IL','Thursday','10/1/2026','7:30 PM','7982527','Ultimate-Salute-To-Chris-Stapleton---Eric-Church-10-1-2026']],'"Chris Stapleton"','https://www.ticketnetwork.com');