//
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([['Chase Matthew & Julia Cole','Ponderosa Lounge & Grill','Portland, OR','Saturday','1/10/2026','8:00 PM','7510197','Chase-Matthew---Julia-Cole-1-10-2026'],['Coors Light Birds Nest: Bailey Zimmerman & Chase Matthew','Birds Nest At TPC Scottsdale','Scottsdale, AZ','Wednesday','2/4/2026','3:00 PM','7367196','Coors-Light-Birds-Nest--Bailey-Zimmerman---Chase-Matthew-2-4-2026'],['Chase Matthew','The Mill & Mine','Knoxville, TN','Friday','2/13/2026','8:00 PM','7560149','Chase-Matthew-2-13-2026'],['Chase Matthew','Roxian Theatre','McKees Rocks, PA','Saturday','2/14/2026','8:00 PM','7558199','Chase-Matthew-2-14-2026'],['Chase Matthew','Grand Casino Hinckley Event Center','Hinckley, MN','Friday','2/27/2026','8:00 PM','7558012','Chase-Matthew-2-27-2026'],['Chase Matthew','Surf Ballroom','Clear Lake, IA','Thursday','3/5/2026','7:00 PM','7560468','Chase-Matthew-3-5-2026'],['Chase Matthew','The Factory - Chesterfield','St. Louis, MO','Friday','3/6/2026','8:00 PM','7558200','Chase-Matthew-3-6-2026'],['Chase Matthew','Blue Gate Performing Arts Center','Shipshewana, IN','Saturday','3/7/2026','7:30 PM','7523780','Chase-Matthew-3-7-2026'],['Chase Matthew','Charleston Music Hall','Charleston, SC','Thursday','3/12/2026','8:00 PM','7558198','Chase-Matthew-3-12-2026'],['Chase Matthew','The Ranch Concert Hall & Saloon','Fort Myers, FL','Friday','3/13/2026','9:00 PM','7560148','Chase-Matthew-3-13-2026']],'Chase Matthew','https://www.ticketnetwork.com');