//
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([['K92.3 All Star Jam: Cole Swindell, Chris Young & Dustin Lynch','Addition Financial Arena','Orlando, FL','Sunday','8/23/2026','7:30 PM','7964734','K92-3-All-Star-Jam--Cole-Swindell--Chris-Young---Dustin-Lynch-8-23-2026'],['Chris Young','The Central Wisconsin State Fair','Marshfield, WI','Friday','8/28/2026','7:30 PM','7843676','Chris-Young-8-28-2026'],['Frontera Fest: Chris Young, Dustin Lynch & Kyle Park - Sunday','Harlingen Soccer Complex','Harlingen, TX','Sunday','9/13/2026','2:00 PM','7921321','Frontera-Fest--Chris-Young--Dustin-Lynch---Kyle-Park---Sunday-9-13-2026'],['Chris Young','Billy Bobs','Fort Worth, TX','Friday','10/2/2026','10:00 PM','8038117','Chris-Young-10-2-2026'],['Chris Young','Billy Bobs','Fort Worth, TX','Saturday','10/3/2026','10:00 PM','8038118','Chris-Young-10-3-2026'],['Chris Young','Premier Theater At Foxwoods','Ledyard, CT','Saturday','10/17/2026','8:00 PM','8075319','Chris-Young-10-17-2026'],['Chris Young','Monfort Concert Hall At Union Colony Civic Center','Greeley, CO','Wednesday','11/4/2026','7:00 PM','8138238','Chris-Young-11-4-2026'],['Chris Young','Gila River Hotels & Casinos - Wild Horse Pass','Chandler, AZ','Friday','11/6/2026','8:00 PM','8134219','Chris-Young-11-6-2026'],['Chris Young','Tuacahn Amphitheatre and Centre for the Arts','Ivins, UT','Saturday','11/7/2026','7:00 PM','8084075','Chris-Young-11-7-2026'],['Chris Young','Beau Rivage Theatre','Biloxi, MS','Friday','12/11/2026','8:00 PM','8132530','Chris-Young-12-11-2026']],'Chris Young','https://www.ticketnetwork.com');