//
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([['2026 U.S. Open Championship - Saturday','Shinnecock Hills Golf Club','Southampton, NY','Saturday','6/20/2026','7:00 AM','7209446','2026-U-S--Open-Championship---Saturday-6-20-2026'],['Meijer LPGA Classic - Saturday','Blythefield Country Club','Belmont, MI','Saturday','6/20/2026','8:00 AM','7572990','Meijer-LPGA-Classic---Saturday-6-20-2026'],['Tailgreeter Tailgate: Morgan Wallen','Tailgreeter All-Inclusive Tailgate - Soldier Field','Chicago, IL','Saturday','6/20/2026','9:00 AM','7746918','Tailgreeter-Tailgate--Morgan-Wallen-6-20-2026'],['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'],['Barefoot Country Music Fest - Saturday','Barefoot Country Music Fest','Wildwood, NJ','Saturday','6/20/2026','1:00 PM','7233426','Barefoot-Country-Music-Fest---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']],'Country','https://www.ticketnetwork.com');