//
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([['Joe Nichols','Allegany County Fairgrounds','Cumberland, MD','Tuesday','7/15/2025','8:00 PM','7015586','Joe-Nichols-7-15-2025'],['Joe Nichols','Val Air Ballroom','West Des Moines, IA','Friday','7/18/2025','7:30 PM','7185622','Joe-Nichols-7-18-2025'],['Joe Nichols & Josh Ross','Perkins County Fairgrounds','Grant, NE','Saturday','7/19/2025','7:00 PM','7009446','Joe-Nichols---Josh-Ross-7-19-2025'],['Joe Nichols','California Exposition & State Fair','Sacramento, CA','Wednesday','7/23/2025','8:00 PM','7032840','Joe-Nichols-7-23-2025'],['Night in the Country Music Festival: Joe Nichols, Cole Swindell & Koe Wetzel - 3 Day Pass','Night in the Country Music Festival','Yerington, NV','Thursday','7/24/2025','TBD','6856941','Night-in-the-Country-Music-Festival--Joe-Nichols--Cole-Swindell---Koe-Wetzel---3-Day-Pass-7-24-2025'],['Joe Nichols','Coos County Fair','Myrtle Point, OR','Saturday','7/26/2025','TBD','7233027','Joe-Nichols-7-26-2025'],['Joe Nichols','Legends Casino Event Center','Toppenish, WA','Sunday','7/27/2025','8:00 PM','7003286','Joe-Nichols-7-27-2025'],['Joe Nichols','Peppermill Concert Hall','West Wendover, NV','Friday','8/1/2025','9:00 PM','7125444','Joe-Nichols-8-1-2025'],['Oregon Jamboree: Jordan Davis, Joe Nichols & Ashley Cooke - Sunday','Oregon Jamboree','Sweet Home, OR','Sunday','8/3/2025','11:00 AM','6738616','Oregon-Jamboree--Jordan-Davis--Joe-Nichols---Ashley-Cooke---Sunday-8-3-2025'],['Joe Nichols','Grizzly Rose','Denver, CO','Friday','8/8/2025','8:00 PM','7053884','Joe-Nichols-8-8-2025']],'Joe Nichols','https://www.ticketnetwork.com');