//
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([['Joe Nichols & Rodney Atkins','Devon Lakeshore Amphitheater','Decatur, IL','Friday','8/7/2026','7:00 PM','7785523','Joe-Nichols---Rodney-Atkins-8-7-2026'],['Joe Nichols, Casey Donahew & Caleb Kenner','Thayer County Fairgrounds','Deshler, NE','Saturday','8/8/2026','6:00 PM','7736932','Joe-Nichols--Casey-Donahew---Caleb-Kenner-8-8-2026'],['Joe Nichols (Reserved Concert Seating)','Cobleskill Fairgrounds','Cobleskill, NY','Wednesday','8/12/2026','7:30 PM','7734061','Joe-Nichols--Reserved-Concert-Seating--8-12-2026'],['Neon Nights: Rascal Flatts, Billy Currington, Joe Nichols, & Craig Morgan - 2 Day Pass','Clay's Resort Jellystone Park','North Lawrence, OH','Friday','8/14/2026','TBD','7606673','Neon-Nights--Rascal-Flatts--Billy-Currington--Joe-Nichols----Craig-Morgan---2-Day-Pass-8-14-2026'],['Neon Nights: Rascal Flatts, Joe Nichols, & Shenandoah','Clay's Resort Jellystone Park','North Lawrence, OH','Friday','8/14/2026','10:00 AM','7606674','Neon-Nights--Rascal-Flatts--Joe-Nichols----Shenandoah-8-14-2026'],['Joe Nichols, Phil Vassar, & Mark Wills','Erie County Fairgrounds in Hamburg','Hamburg, NY','Saturday','8/15/2026','6:00 PM','7851661','Joe-Nichols--Phil-Vassar----Mark-Wills-8-15-2026'],['Joe Nichols','Anderson Music Hall','Hiawassee, GA','Thursday','8/20/2026','7:00 PM','7598154','Joe-Nichols-8-20-2026'],['Joe Nichols','Newberry Opera House','Newberry, SC','Friday','8/21/2026','7:30 PM','7977241','Joe-Nichols-8-21-2026'],['Joe Nichols','Lynchburg Amphitheater at Riverfront Park','Lynchburg, VA','Saturday','8/22/2026','7:00 PM','8121490','Joe-Nichols-8-22-2026'],['Joe Nichols','Lonestar Premier Outdoors','Cibolo, TX','Friday','9/4/2026','7:00 PM','8005557','Joe-Nichols-9-4-2026']],'Joe Nichols','https://www.ticketnetwork.com');