//
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([['Chris Young','Hard Rock Live - Hard Rock Hotel & Casino Tulsa','Catoosa, OK','Thursday','6/25/2026','8:00 PM','7802916','Chris-Young-6-25-2026'],['Chris Young','Bi-Mart Amphitheater','Central Point, OR','Thursday','7/16/2026','7:00 PM','7811252','Chris-Young-7-16-2026'],['Chris Young','Pacific Amphitheatre','Costa Mesa, CA','Saturday','7/18/2026','7:30 PM','7693633','Chris-Young-7-18-2026'],['Chris Young','Timber Rock Amphitheater','Farmington, PA','Friday','8/7/2026','7:00 PM','8023332','Chris-Young-8-7-2026'],['Chris Young & Chase Rice','KEMBA Live!','Columbus, OH','Saturday','8/8/2026','7:00 PM','7843671','Chris-Young---Chase-Rice-8-8-2026'],['Chris Young','Lexington Opera House','Lexington, KY','Thursday','8/13/2026','8:00 PM','8071990','Chris-Young-8-13-2026'],['Chris Young','Southern Kentucky Performing Arts Center','Bowling Green, KY','Friday','8/14/2026','7:30 PM','8028771','Chris-Young-8-14-2026'],['The Back Road Music Festival: Chris Young, Lauren Alaina & Lakeview','Wiley Park Productions','Galva, IL','Saturday','8/15/2026','2:30 PM','7843661','The-Back-Road-Music-Festival--Chris-Young--Lauren-Alaina---Lakeview-8-15-2026'],['Chris Young','The Central Wisconsin State Fair','Marshfield, WI','Friday','8/28/2026','7:30 PM','7843676','Chris-Young-8-28-2026'],['Concert In The Corn: Chris Young & Ashley McBryde - Saturday','Concert Grounds at White River AG Products','Mason, WI','Saturday','8/29/2026','9:00 AM','7650257','Concert-In-The-Corn--Chris-Young---Ashley-McBryde---Saturday-8-29-2026']],'"Chris Young"','https://www.ticketnetwork.com');