//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['George Strait, Cody Johnson & Wyatt Flores','Frank Howard Field at Clemson Memorial Stadium','Clemson, SC','Saturday','5/2/2026','6:00 PM','7498653','George-Strait--Cody-Johnson---Wyatt-Flores-5-2-2026'],['2026 Gulf Coast Jam: Post Malone, Chris Stapleton, Riley Green & Keith Urban - 4 Day Pass','Frank Brown Park','Panama City Beach, FL','Thursday','5/28/2026','TBD','7181094','2026-Gulf-Coast-Jam--Post-Malone--Chris-Stapleton--Riley-Green---Keith-Urban---4-Day-Pass-5-28-2026'],['Wyatt Flores','Greenfield Lake Amphitheater','Wilmington, NC','Wednesday','6/10/2026','6:00 PM','7827882','Wyatt-Flores-6-10-2026'],['Wyatt Flores','Greenfield Lake Amphitheater','Wilmington, NC','Thursday','6/11/2026','6:00 PM','7827884','Wyatt-Flores-6-11-2026'],['Wyatt Flores','Avondale Brewing Company','Birmingham, AL','Sunday','6/14/2026','7:00 PM','7827886','Wyatt-Flores-6-14-2026'],['Tailgate N Tallboys Music Festival: Zach Top, Treaty Oak Revival & Jessie Murph - 4 Day Pass','Tailgate N' Tallboys - Normal','Normal, IL','Thursday','6/18/2026','TBD','7503974','Tailgate-N-Tallboys-Music-Festival--Zach-Top--Treaty-Oak-Revival---Jessie-Murph---4-Day-Pass-6-18-2026'],['The Country Fest: Treaty Oak Revival, Wyatt Flores & John Morgan - Thursday','Clay's Resort Jellystone Park','North Lawrence, OH','Thursday','6/18/2026','11:00 AM','7338470','The-Country-Fest--Treaty-Oak-Revival--Wyatt-Flores---John-Morgan---Thursday-6-18-2026'],['Tailgate N Tallboys Music Festival: Treaty Oak Revival, Wyatt Flores & Chase Matthew - Friday','Tailgate N' Tallboys - Normal','Normal, IL','Friday','6/19/2026','12:00 PM','7503973','Tailgate-N-Tallboys-Music-Festival--Treaty-Oak-Revival--Wyatt-Flores---Chase-Matthew---Friday-6-19-2026'],['Wyatt Flores','Val Air Ballroom','West Des Moines, IA','Saturday','6/20/2026','8:00 PM','7828129','Wyatt-Flores-6-20-2026'],['Wyatt Flores','The Cotillion','Wichita, KS','Tuesday','6/23/2026','8:00 PM','7825583','Wyatt-Flores-6-23-2026']],'Wyatt Flores','https://www.ticketnetwork.com');