//
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','Tuacahn Amphitheatre and Centre for the Arts','Ivins, UT','Friday','3/20/2026','8:00 PM','7706603','Dustin-Lynch-3-20-2026'],['Boots In The Park: Keith Urban, Dustin Lynch & Mitchell Tenpenny','Gilbert Regional Park','Gilbert, AZ','Saturday','3/21/2026','12:00 PM','7613216','Boots-In-The-Park--Keith-Urban--Dustin-Lynch---Mitchell-Tenpenny-3-21-2026'],['Dustin Lynch & Chase Rice','Red Rocks Amphitheatre','Morrison, CO','Wednesday','4/22/2026','7:00 PM','7706960','Dustin-Lynch---Chase-Rice-4-22-2026'],['Drifters Music Festival: Dustin Lynch, Chase Rice, Mitchell Tenpenny & Lauren Alaina - 2 Day Pass','J Resort Festival Grounds','Reno, NV','Saturday','5/23/2026','TBD','7739187','Drifters-Music-Festival--Dustin-Lynch--Chase-Rice--Mitchell-Tenpenny---Lauren-Alaina---2-Day-Pass-5-23-2026'],['Dustin Lynch','Sunset Amphitheatre - Sunset Station - NV','Henderson, NV','Saturday','5/23/2026','8:00 PM','7613807','Dustin-Lynch-5-23-2026'],['Drifters Music Festival: Dustin Lynch, Mitchell Tenpenny, & Matt Stell - Sunday','J Resort Festival Grounds','Reno, NV','Sunday','5/24/2026','12:00 PM','7756906','Drifters-Music-Festival--Dustin-Lynch--Mitchell-Tenpenny----Matt-Stell---Sunday-5-24-2026'],['State Lines, A Country Celebration: Dustin Lynch, Mitchell Tenpenny & Rowan Grace','Grand Falls Casino','Larchwood, IA','Saturday','6/6/2026','5:00 PM','7666954','State-Lines--A-Country-Celebration--Dustin-Lynch--Mitchell-Tenpenny---Rowan-Grace-6-6-2026'],['Fields of Honor: Dustin Lynch, Randy Houser & Braxton Keith','Inch & Co Farm','York, PA','Saturday','6/20/2026','6:00 PM','7740656','Fields-of-Honor--Dustin-Lynch--Randy-Houser---Braxton-Keith-6-20-2026'],['OC Smoke Show: Kane Brown, Dustin Lynch & LoCash','Rancho Mission Viejo Riding Park','San Juan Capistrano, CA','Saturday','8/15/2026','1:00 PM','7735449','OC-Smoke-Show--Kane-Brown--Dustin-Lynch---LoCash-8-15-2026']],'Dustin Lynch','https://www.ticketnetwork.com');