//
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([['Wyatt Flores','Fox Theater - Oakland','Oakland, CA','Thursday','9/11/2025','8:00 PM','7153063','Wyatt-Flores-9-11-2025'],['Wyatt Flores','The Sound At The Del Mar Fairgrounds','Del Mar, CA','Friday','9/12/2025','8:00 PM','7153169','Wyatt-Flores-9-12-2025'],['Wyatt Flores','Arlington Theatre','Santa Barbara, CA','Saturday','9/13/2025','8:00 PM','7154444','Wyatt-Flores-9-13-2025'],['Wyatt Flores','Pepsi Amphitheatre at Fort Tuthill','Flagstaff, AZ','Tuesday','9/16/2025','7:00 PM','7152888','Wyatt-Flores-9-16-2025'],['Wyatt Flores','Revel Entertainment Center','Albuquerque, NM','Wednesday','9/17/2025','8:00 PM','7152889','Wyatt-Flores-9-17-2025'],['Wyatt Flores','713 Music Hall','Houston, TX','Saturday','9/20/2025','8:00 PM','7153064','Wyatt-Flores-9-20-2025'],['Grand Ole Opry: Wyatt Flores & 49 Winchester','Grand Ole Opry House','Nashville, TN','Saturday','9/27/2025','7:00 PM','7154443','Grand-Ole-Opry--Wyatt-Flores---49-Winchester-9-27-2025'],['Wyatt Flores','Commodore Ballroom','Vancouver, Canada','Saturday','11/8/2025','7:00 PM','7153167','Wyatt-Flores-11-8-2025'],['Wyatt Flores','Commodore Ballroom','Vancouver, Canada','Sunday','11/9/2025','7:00 PM','7174707','Wyatt-Flores-11-9-2025'],['Wyatt Flores','Palace Theatre - Calgary','Calgary, Canada','Tuesday','11/11/2025','7:00 PM','7153277','Wyatt-Flores-11-11-2025']],'Wyatt Flores','https://www.ticketnetwork.com');