//
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([['The Red Clay Strays Fan Fest - Saturday','Abayance Bay','Rexford, MT','Saturday','6/27/2026','6:30 PM','7791520','The-Red-Clay-Strays-Fan-Fest---Saturday-6-27-2026'],['The Red Clay Strays Fan Fest - Sunday','Abayance Bay','Rexford, MT','Sunday','6/28/2026','6:30 PM','7791521','The-Red-Clay-Strays-Fan-Fest---Sunday-6-28-2026'],['Minnesota Country Club Festival: Treaty Oak Revival, The Red Clay Strays & Charley Crockett - 2 Day Pass','Harriet Island Regional Park','Saint Paul, MN','Friday','7/10/2026','TBD','7709706','Minnesota-Country-Club-Festival--Treaty-Oak-Revival--The-Red-Clay-Strays---Charley-Crockett---2-Day-Pass-7-10-2026'],['Minnesota Country Club Festival: The Red Clay Strays, Jessie Murph, & Trampled by Turtles - Saturday','Harriet Island Regional Park','Saint Paul, MN','Saturday','7/11/2026','12:00 PM','7709708','Minnesota-Country-Club-Festival--The-Red-Clay-Strays--Jessie-Murph----Trampled-by-Turtles---Saturday-7-11-2026'],['Country Thunder Wisconson: Keith Urban, Riley Green, Gavin Adcock & The Red Clay Strays - 4 Day Pass','Country Thunder At Shadow Hill Ranch','Twin Lakes, WI','Thursday','7/16/2026','TBD','7629579','Country-Thunder-Wisconson--Keith-Urban--Riley-Green--Gavin-Adcock---The-Red-Clay-Strays---4-Day-Pass-7-16-2026'],['Country Thunder Wisconson: The Red Clay Strays, Ian Munsick & Mark Chesnutt - Friday','Country Thunder At Shadow Hill Ranch','Twin Lakes, WI','Friday','7/17/2026','12:00 PM','7741530','Country-Thunder-Wisconson--The-Red-Clay-Strays--Ian-Munsick---Mark-Chesnutt---Friday-7-17-2026'],['Cheyenne Frontier Nights: The Red Clay Strays & Wyatt Flores','Cheyenne Frontier Days Arena','Cheyenne, WY','Sunday','7/19/2026','8:00 PM','7295705','Cheyenne-Frontier-Nights--The-Red-Clay-Strays---Wyatt-Flores-7-19-2026'],['The Red Clay Strays, The Revivalists & Haley Reinhart','Merriweather Post Pavilion','Columbia, MD','Thursday','7/30/2026','6:30 PM','7748288','The-Red-Clay-Strays--The-Revivalists---Haley-Reinhart-7-30-2026'],['The Red Clay Strays, The Revivalists & Haley Reinhart','TD Garden','Boston, MA','Saturday','8/1/2026','6:30 PM','7748073','The-Red-Clay-Strays--The-Revivalists---Haley-Reinhart-8-1-2026'],['The Red Clay Strays, The Revivalists & Brent Cobb','TD Pavilion at The Mann Center For The Performing Arts','Philadelphia, PA','Friday','8/7/2026','6:30 PM','7906826','The-Red-Clay-Strays--The-Revivalists---Brent-Cobb-8-7-2026']],'"Red Clay Strays"','https://www.ticketnetwork.com');