//
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([['Dustin Lynch','Encore Beach Club','Las Vegas, NV','Friday','7/4/2025','11:00 AM','7015620','Dustin-Lynch-7-4-2025'],['The Madison Regatta and Roostertail Music Festival: Dustin Lynch & Vincent Mason - Saturday','Madison Regatta','Madison, IN','Saturday','7/5/2025','3:00 PM','6904257','The-Madison-Regatta-and-Roostertail-Music-Festival--Dustin-Lynch---Vincent-Mason---Saturday-7-5-2025'],['Dustin Lynch','Morgan County Fair Grandstand','Jacksonville, IL','Friday','7/11/2025','7:30 PM','6944244','Dustin-Lynch-7-11-2025'],['Dustin Lynch','FWD Day and Nightclub','Cleveland, OH','Sunday','7/13/2025','12:00 PM','7182769','Dustin-Lynch-7-13-2025'],['Dustin Lynch','The Cove At Cal Expo','Sacramento, CA','Thursday','7/17/2025','8:00 PM','7021765','Dustin-Lynch-7-17-2025'],['Dustin Lynch','Fantasy Springs Resort & Casino','Indio, CA','Friday','7/18/2025','8:00 PM','7094775','Dustin-Lynch-7-18-2025'],['Dustin Lynch','Palmdale Amphitheatre','Palmdale, CA','Saturday','7/19/2025','8:00 PM','7172317','Dustin-Lynch-7-19-2025'],['Dustin Lynch','Douglas County Fairgrounds and Events Center','Castle Rock, CO','Friday','7/25/2025','7:30 PM','7148901','Dustin-Lynch-7-25-2025'],['Dustin Lynch','United Wireless Arena','Dodge City, KS','Saturday','7/26/2025','8:00 PM','7027277','Dustin-Lynch-7-26-2025'],['County Line Country Fest: Dustin Lynch, Russell Dickerson & Craig Morgan - 3 Day Pass','Country on the River Festival Grounds','Prairie Du Chien, WI','Thursday','7/31/2025','TBD','6824673','County-Line-Country-Fest--Dustin-Lynch--Russell-Dickerson---Craig-Morgan---3-Day-Pass-7-31-2025']],'Dustin Lynch','https://www.ticketnetwork.com');