//
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 & Jonah Kagen','Old Saloon','Emigrant, MT','Tuesday','7/22/2025','6:00 PM','7050394','Wyatt-Flores---Jonah-Kagen-7-22-2025'],['Wyatt Flores','Warehouse 25 Sixty-Five','Grand Junction, CO','Thursday','7/24/2025','7:00 PM','7050146','Wyatt-Flores-7-24-2025'],['Wyatt Flores','Sandy Amphitheater','Sandy, UT','Friday','7/25/2025','7:00 PM','7049806','Wyatt-Flores-7-25-2025'],['Grand Ole Opry: Wyatt Flores & 49 Winchester','Grand Ole Opry House','Nashville, TN','Tuesday','7/29/2025','7:00 PM','6762396','Grand-Ole-Opry--Wyatt-Flores---49-Winchester-7-29-2025'],['Wyatt Flores','West Virginia State Fair','Lewisburg, WV','Wednesday','8/13/2025','8:00 PM','6991877','Wyatt-Flores-8-13-2025'],['Wyatt Flores','Erie County Fairgrounds in Hamburg','Hamburg, NY','Thursday','8/14/2025','7:30 PM','7154447','Wyatt-Flores-8-14-2025'],['Wyatt Flores','Showbox SoDo','Seattle, WA','Wednesday','9/3/2025','8:00 PM','7154446','Wyatt-Flores-9-3-2025'],['Wyatt Flores','Rogers Field','Pullman, WA','Friday','9/5/2025','TBD','7154600','Wyatt-Flores-9-5-2025'],['Wyatt Flores','McMenamins Crystal Ballroom','Portland, OR','Saturday','9/6/2025','8:00 PM','7154445','Wyatt-Flores-9-6-2025'],['Wyatt Flores','Revolution Concert House and Event Center','Garden City, ID','Sunday','9/7/2025','8:00 PM','7153195','Wyatt-Flores-9-7-2025']],'Wyatt Flores','https://www.ticketnetwork.com');