//
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([['The Country Fest: Kane Brown, Brantley Gilbert & Chase Matthew - Saturday','Clay's Resort Jellystone Park','North Lawrence, OH','Saturday','6/20/2026','11:00 AM','7338472','The-Country-Fest--Kane-Brown--Brantley-Gilbert---Chase-Matthew---Saturday-6-20-2026'],['Boots & Brews Country Music Festival: Jordan Davis & Gretchen Wilson','Morgan Hill Outdoor Sports Center','Morgan Hill, CA','Saturday','6/20/2026','3:00 PM','7624739','Boots---Brews-Country-Music-Festival--Jordan-Davis---Gretchen-Wilson-6-20-2026'],['The South Texas Sound','Stable Hall','San Antonio, TX','Saturday','6/20/2026','5:00 PM','7962185','The-South-Texas-Sound-6-20-2026'],['Cowboy Town Concert: Owen Riegling','Strathmore Stampede Grounds','Strathmore, Canada','Saturday','6/20/2026','5:00 PM','7897680','Cowboy-Town-Concert--Owen-Riegling-6-20-2026'],['Morgan Wallen, Ella Langley, Gavin Adcock, & Zach John King','Soldier Field','Chicago, IL','Saturday','6/20/2026','5:30 PM','7529805','Morgan-Wallen--Ella-Langley--Gavin-Adcock----Zach-John-King-6-20-2026'],['Flatland Cavalry & Shane Smith and The Saints','Fiddlers Green Amphitheatre','Englewood, CO','Saturday','6/20/2026','5:30 PM','7860295','Flatland-Cavalry---Shane-Smith-and-The-Saints-6-20-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton, Lainey Wilson & Allen Stone','Bank Of America Stadium','Charlotte, NC','Saturday','6/20/2026','6:00 PM','7668710','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton--Lainey-Wilson---Allen-Stone-6-20-2026'],['Fields of Honor: Dustin Lynch, Randy Houser & Braxton Keith','Inch & Co Farm','York, PA','Saturday','6/20/2026','6:00 PM','7740656','Fields-of-Honor--Dustin-Lynch--Randy-Houser---Braxton-Keith-6-20-2026'],['Chicago Dogs vs. Lake Country DockHounds','Impact Field','Rosemont, IL','Saturday','6/20/2026','6:00 PM','7505886','Chicago-Dogs-vs--Lake-Country-DockHounds-6-20-2026'],['Randy Rogers','The Backyard - Waco','Waco, TX','Saturday','6/20/2026','6:00 PM','7990451','Randy-Rogers-6-20-2026']],'"Country"','https://www.ticketnetwork.com');