//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['George Strait, Chris Stapleton & Parker McCollum','Lincoln Financial Field','Philadelphia, PA','Saturday','5/10/2025','5:45 PM','6987259','George-Strait--Chris-Stapleton---Parker-McCollum-5-10-2025'],['Pittsburgh Gold Zone Tailgate: George Strait & Chris Stapleton','Gameday Hospitality - Pittsburgh','Pittsburgh, PA','Saturday','5/31/2025','4:00 PM','7062857','Pittsburgh-Gold-Zone-Tailgate--George-Strait---Chris-Stapleton-5-31-2025'],['George Strait, Chris Stapleton & Parker McCollum','Acrisure Stadium','Pittsburgh, PA','Saturday','5/31/2025','5:45 PM','6987260','George-Strait--Chris-Stapleton---Parker-McCollum-5-31-2025'],['The Ultimate Eric Church Tribute & Tennessee Whiskey - Tribute to Chris Stapleton','Arcada Theatre','Saint Charles, IL','Saturday','5/31/2025','8:00 PM','7112996','The-Ultimate-Eric-Church-Tribute---Tennessee-Whiskey---Tribute-to-Chris-Stapleton-5-31-2025'],['Chris Stapleton','Bon Secours Wellness Arena','Greenville, SC','Wednesday','6/4/2025','7:00 PM','6919619','Chris-Stapleton-6-4-2025'],['Chris Stapleton','John Paul Jones Arena','Charlottesville, VA','Friday','6/6/2025','6:30 PM','6938574','Chris-Stapleton-6-6-2025'],['Chris Stapleton','John Paul Jones Arena','Charlottesville, VA','Saturday','6/7/2025','7:00 PM','6919620','Chris-Stapleton-6-7-2025'],['Chris Stapleton','Van Andel Arena','Grand Rapids, MI','Thursday','6/12/2025','7:00 PM','6919621','Chris-Stapleton-6-12-2025'],['Chris Stapleton','Van Andel Arena','Grand Rapids, MI','Friday','6/13/2025','7:30 PM','6938577','Chris-Stapleton-6-13-2025'],['Buffalo Red Zone Tailgate: George Strait & Chris Stapleton','Gameday Hospitality - Orchard Park','Orchard Park, NY','Saturday','6/14/2025','3:30 PM','7062775','Buffalo-Red-Zone-Tailgate--George-Strait---Chris-Stapleton-6-14-2025']],'"Chris Stapleton"','https://www.ticketnetwork.com');