//
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([['Cole Swindell & Gabby Barrett','Michelob Ultra Summer Stage at Tags','Big Flats, NY','Friday','5/22/2026','6:00 PM','7808047','Cole-Swindell---Gabby-Barrett-5-22-2026'],['Tampa Bay Rays vs. Los Angeles Angels (Post Game Concert by Cole Swindell)','Tropicana Field','St. Petersburg, FL','Saturday','5/30/2026','4:10 PM','7368783','Tampa-Bay-Rays-vs--Los-Angeles-Angels--Post-Game-Concert-by-Cole-Swindell--5-30-2026'],['Carolina Country Music Festival: Luke Bryan, Cole Swindell & Flatland Cavalry - Friday','Burroughs & Chapin Pavilion Place','Myrtle Beach, SC','Friday','6/5/2026','12:00 PM','7209278','Carolina-Country-Music-Festival--Luke-Bryan--Cole-Swindell---Flatland-Cavalry---Friday-6-5-2026'],['Cole Swindell','The Fruit Yard Amphitheater','Modesto, CA','Thursday','6/11/2026','7:00 PM','7804506','Cole-Swindell-6-11-2026'],['Country Summer: Cole Swindell, Keith Urban & Koe Wetzel - 3 Day Pass','Sonoma County Fairgrounds','Santa Rosa, CA','Friday','6/12/2026','TBD','7880500','Country-Summer--Cole-Swindell--Keith-Urban---Koe-Wetzel---3-Day-Pass-6-12-2026'],['Country Summer: Cole Swindell, Nate Smith & Dasha - Friday','Sonoma County Fairgrounds','Santa Rosa, CA','Friday','6/12/2026','3:45 PM','7880497','Country-Summer--Cole-Swindell--Nate-Smith---Dasha---Friday-6-12-2026'],['Boots & Brews Country Music Festival: Cole Swindell, Gretchen Wilson, & Jayden Secor','Ventura County Fairgrounds','Ventura, CA','Saturday','6/13/2026','2:00 PM','7624740','Boots---Brews-Country-Music-Festival--Cole-Swindell--Gretchen-Wilson----Jayden-Secor-6-13-2026'],['Carolina Crossroads Motorsports Bike & Music Festival: Easy Rider Rodeo - Friday','Carolina Crossroads Amphitheatre','Roanoke Rapids, NC','Friday','6/19/2026','12:00 PM','7919659','Carolina-Crossroads-Motorsports-Bike---Music-Festival--Easy-Rider-Rodeo---Friday-6-19-2026'],['Cole Swindell & Ian Munsick','Carolina Crossroads Amphitheatre','Roanoke Rapids, NC','Friday','6/19/2026','7:30 PM','7919664','Cole-Swindell---Ian-Munsick-6-19-2026'],['Cole Swindell & Lee Brice','Credit One Stadium','Charleston, SC','Saturday','6/20/2026','7:00 PM','7891798','Cole-Swindell---Lee-Brice-6-20-2026']],'Cole Swindell','https://www.ticketnetwork.com');