//
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([['Boots On The Bayou: Cody Johnson, Parker McCollum & Carly Pearce - Friday','Lamar Dixon Expo Center','Gonzales, LA','Friday','10/31/2025','12:30 PM','7358874','Boots-On-The-Bayou--Cody-Johnson--Parker-McCollum---Carly-Pearce---Friday-10-31-2025'],['Cody Johnson','Legacy Arena at The BJCC','Birmingham, AL','Friday','2/6/2026','7:30 PM','7085442','Cody-Johnson-2-6-2026'],['Cody Johnson','Legacy Arena at The BJCC','Birmingham, AL','Saturday','2/7/2026','7:30 PM','7068802','Cody-Johnson-2-7-2026'],['Cody Johnson','KFC Yum! Center','Louisville, KY','Saturday','2/14/2026','7:30 PM','7400817','Cody-Johnson-2-14-2026'],['Cody Johnson','Colonial Life Arena','Columbia, SC','Saturday','2/28/2026','7:30 PM','7400816','Cody-Johnson-2-28-2026'],['Cody Johnson','PPG Paints Arena','Pittsburgh, PA','Friday','3/6/2026','7:30 PM','7068803','Cody-Johnson-3-6-2026'],['Cody Johnson','CFG Bank Arena','Baltimore, MD','Saturday','3/7/2026','7:30 PM','7400815','Cody-Johnson-3-7-2026'],['PARKING: Houston Livestock Show And Rodeo: Cody Johnson','NRG Stadium Parking Lots','Houston, TX','Sunday','3/22/2026','TBD','7308022','PARKING--Houston-Livestock-Show-And-Rodeo--Cody-Johnson-3-22-2026'],['Houston Livestock Show And Rodeo: Cody Johnson','NRG Stadium','Houston, TX','Sunday','3/22/2026','8:00 PM','7089333','Houston-Livestock-Show-And-Rodeo--Cody-Johnson-3-22-2026'],['Stagecoach Festival: Cody Johnson, Lainey Wilson & Post Malone - 3 Day Pass','Empire Polo Field','Indio, CA','Friday','4/24/2026','TBD','7203845','Stagecoach-Festival--Cody-Johnson--Lainey-Wilson---Post-Malone---3-Day-Pass-4-24-2026']],'"Cody Johnson"','https://www.ticketnetwork.com');