//
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([['Pendleton Whisky Music Fest: Cody Johnson','Pendleton Round-Up Grounds','Pendleton, OR','Saturday','7/12/2025','3:00 PM','6729157','Pendleton-Whisky-Music-Fest--Cody-Johnson-7-12-2025'],['Cody Johnson','Golden 1 Center','Sacramento, CA','Thursday','7/17/2025','7:30 PM','7085415','Cody-Johnson-7-17-2025'],['Cody Johnson','Golden 1 Center','Sacramento, CA','Friday','7/18/2025','7:30 PM','7068807','Cody-Johnson-7-18-2025'],['Cody Johnson','California Mid-state Fair Grounds','Paso Robles, CA','Saturday','7/19/2025','7:30 PM','6970691','Cody-Johnson-7-19-2025'],['Frontier Nights: Cody Johnson & Randy Houser','Cheyenne Frontier Days Arena','Cheyenne, WY','Friday','7/25/2025','8:00 PM','6598115','Frontier-Nights--Cody-Johnson---Randy-Houser-7-25-2025'],['XRoads41: Cody Johnson, Kane Brown & Parker McCollum - 3 Day Pass','XRoads41 Festival Grounds','Oshkosh, WI','Thursday','8/7/2025','TBD','6852739','XRoads41--Cody-Johnson--Kane-Brown---Parker-McCollum---3-Day-Pass-8-7-2025'],['We Fest: Hardy, Jon Pardi & Cody Johnson - 3 Day Pass','Soo Pass Ranch','Detroit Lakes, MN','Thursday','8/7/2025','TBD','6756056','We-Fest--Hardy--Jon-Pardi---Cody-Johnson---3-Day-Pass-8-7-2025'],['2025 Country Thunder Alberta: Cody Johnson, Bailey Zimmerman & Old Dominion - 3 Day Pass','Fort Calgary','Calgary, Canada','Friday','8/15/2025','TBD','6650220','2025-Country-Thunder-Alberta--Cody-Johnson--Bailey-Zimmerman---Old-Dominion---3-Day-Pass-8-15-2025'],['2025 Country Thunder Alberta: Cody Johnson & Ashley McBryde - Friday','Fort Calgary','Calgary, Canada','Friday','8/15/2025','12:00 PM','6756081','2025-Country-Thunder-Alberta--Cody-Johnson---Ashley-McBryde---Friday-8-15-2025'],['Cody Johnson','Thunder Ridge Nature Arena','Ridgedale, MO','Saturday','8/23/2025','7:00 PM','7044713','Cody-Johnson-8-23-2025']],'Cody Johnson','https://www.ticketnetwork.com');