//
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([['Dustin Lynch','Loeb Stadium','Lafayette, IN','Thursday','9/10/2026','7:30 PM','7945238','Dustin-Lynch-9-10-2026'],['Detroit Tigers vs. Colorado Rockies (Post Game Concert by Dustin Lynch)','Comerica Park','Detroit, MI','Friday','9/11/2026','6:40 PM','7369605','Detroit-Tigers-vs--Colorado-Rockies--Post-Game-Concert-by-Dustin-Lynch--9-11-2026'],['Dustin Lynch','Resorts World Catskills - Monticello','Monticello, NY','Saturday','9/12/2026','8:00 PM','8022103','Dustin-Lynch-9-12-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'],['Dustin Lynch','Timber Rock Amphitheater','Farmington, PA','Friday','10/2/2026','7:00 PM','8170940','Dustin-Lynch-10-2-2026'],['Dustin Lynch','Blue Gate Performing Arts Center','Shipshewana, IN','Friday','10/9/2026','7:30 PM','8056485','Dustin-Lynch-10-9-2026'],['Dustin Lynch','The Amp at Log Still','New Haven, KY','Saturday','10/10/2026','7:00 PM','8101557','Dustin-Lynch-10-10-2026'],['Blazin' Saddles: Diplo, Dustin Lynch & Wuki','Ramona Ave Landing','Sacramento, CA','Friday','10/16/2026','4:00 PM','8184820','Blazin--Saddles--Diplo--Dustin-Lynch---Wuki-10-16-2026'],['Faultline Festival: Dustin Lynch & Mitchell Tenpenny','Morongo Field','Rancho Cucamonga, CA','Saturday','10/17/2026','5:30 PM','8225545','Faultline-Festival--Dustin-Lynch---Mitchell-Tenpenny-10-17-2026'],['Dustin Lynch','Vina Robles Amphitheater','Paso Robles, CA','Sunday','10/18/2026','7:30 PM','8114581','Dustin-Lynch-10-18-2026']],'Dustin Lynch','https://www.ticketnetwork.com');