//
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-04A
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, Lainey Wilson & Allen Stone','Nissan Stadium - Nashville','Nashville, TN','Saturday','5/23/2026','6:00 PM','7668706','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton--Lainey-Wilson---Allen-Stone-5-23-2026'],['Wallen & Wilson - Tribute To Morgan Wallen & Lainey Wilson','Moonlight Amphitheatre','Vista, CA','Saturday','5/23/2026','7:30 PM','7874204','Wallen---Wilson---Tribute-To-Morgan-Wallen---Lainey-Wilson-5-23-2026'],['Wallen & Wilson - Tribute To Morgan Wallen & Lainey Wilson','The Arrow Room','Rancho Cucamonga, CA','Sunday','5/24/2026','5:00 PM','7886379','Wallen---Wilson---Tribute-To-Morgan-Wallen---Lainey-Wilson-5-24-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton, Lainey Wilson & Allen Stone','Raymond James Stadium','Tampa, FL','Saturday','6/13/2026','6:00 PM','7668708','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton--Lainey-Wilson---Allen-Stone-6-13-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton, Lainey Wilson & Allen Stone','Bank Of America Stadium','Charlotte, NC','Saturday','6/20/2026','6:00 PM','7668710','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton--Lainey-Wilson---Allen-Stone-6-20-2026'],['Windy City Smokeout Festival: Hootie and The Blowfish, Blake Shelton, Jordan Davis & Lainey Wilson - 4 Day Pass','Windy City Smokeout','Chicago, IL','Thursday','7/9/2026','TBD','7522489','Windy-City-Smokeout-Festival--Hootie-and-The-Blowfish--Blake-Shelton--Jordan-Davis---Lainey-Wilson---4-Day-Pass-7-9-2026'],['Country Thunder Saskatchewan: Riley Green, Creed & Lainey Wilson - 4 Day Pass','Craven Country Jamboree Festival Site','Craven, Canada','Thursday','7/9/2026','TBD','7629580','Country-Thunder-Saskatchewan--Riley-Green--Creed---Lainey-Wilson---4-Day-Pass-7-9-2026'],['Windy City Smokeout Festival: Lainey Wilson, Hudson Westbrook & Vincent Mason - Friday','Windy City Smokeout','Chicago, IL','Friday','7/10/2026','2:00 PM','7522492','Windy-City-Smokeout-Festival--Lainey-Wilson--Hudson-Westbrook---Vincent-Mason---Friday-7-10-2026'],['Lainey Wilson','California Mid-state Fair Grounds','Paso Robles, CA','Friday','7/17/2026','7:30 PM','7841863','Lainey-Wilson-7-17-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton, Lainey Wilson & Allen Stone','Paycor Stadium','Cincinnati, OH','Saturday','8/1/2026','6:00 PM','7668723','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton--Lainey-Wilson---Allen-Stone-8-1-2026']],'Lainey Wilson','https://www.ticketnetwork.com');