//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Chris Stapleton's All-American Road Show: Chris Stapleton & Grace Potter','North Charleston Coliseum','North Charleston, SC','Saturday','6/27/2026','7:30 PM','7679826','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Grace-Potter-6-27-2026'],['Tennessee Whiskey - Tribute to Chris Stapleton','CEFCU Center Stage at The Landing - Peoria Riverfront','Peoria, IL','Friday','7/3/2026','7:00 PM','7902970','Tennessee-Whiskey---Tribute-to-Chris-Stapleton-7-3-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','Shoreline Amphitheatre - CA','Mountain View, CA','Wednesday','7/8/2026','7:30 PM','7668714','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-8-2026'],['Tennessee Whiskey - Tribute to Chris Stapleton','Gas City Performing Arts Center','Gas City, IN','Friday','7/10/2026','7:00 PM','7703477','Tennessee-Whiskey---Tribute-to-Chris-Stapleton-7-10-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','North Island Credit Union Amphitheatre','Chula Vista, CA','Friday','7/10/2026','7:30 PM','7668716','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-10-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','North Island Credit Union Amphitheatre','Chula Vista, CA','Saturday','7/11/2026','7:30 PM','7679825','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-11-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','California Mid-state Fair Grounds','Paso Robles, CA','Tuesday','7/14/2026','7:30 PM','7668717','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-14-2026'],['Under The Big Sky Music Festival: Cody Jinks, Zach Top & Chris Stapleton - 3 Day Pass','The Barns at Big Mountain Ranch','Whitefish, MT','Friday','7/17/2026','TBD','7532820','Under-The-Big-Sky-Music-Festival--Cody-Jinks--Zach-Top---Chris-Stapleton---3-Day-Pass-7-17-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Grace Potter','Providence Park','Portland, OR','Friday','7/17/2026','6:00 PM','7668718','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Grace-Potter-7-17-2026'],['Under the Big Sky Music Festival: Chris Stapleton - Sunday','The Barns at Big Mountain Ranch','Whitefish, MT','Sunday','7/19/2026','12:00 PM','7532823','Under-the-Big-Sky-Music-Festival--Chris-Stapleton---Sunday-7-19-2026']],'"Chris Stapleton"','https://www.ticketnetwork.com');