//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Chase Matthew','Bogarts','Cincinnati, OH','Saturday','11/15/2025','7:00 PM','7338450','Chase-Matthew-11-15-2025'],['Chase Matthew','Morongo Casino Outdoor Pavilion','Cabazon, CA','Thursday','11/20/2025','9:00 PM','7465773','Chase-Matthew-11-20-2025'],['Chase Matthew','Rivers Casino Portsmouth Event Center','Portsmouth, VA','Saturday','11/29/2025','8:00 PM','7338911','Chase-Matthew-11-29-2025'],['Chase Matthew','Ogden Theatre','Denver, CO','Thursday','12/4/2025','8:00 PM','7338458','Chase-Matthew-12-4-2025'],['Chase Matthew','The Union Event Center','Salt Lake City, UT','Friday','12/5/2025','7:40 PM','7338451','Chase-Matthew-12-5-2025'],['Chase Matthew','Revolution Concert House and Event Center','Garden City, ID','Saturday','12/6/2025','8:00 PM','7338452','Chase-Matthew-12-6-2025'],['Chase Matthew','Emerald Queen Casino','Tacoma, WA','Sunday','12/7/2025','7:00 PM','7338453','Chase-Matthew-12-7-2025'],['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','TBD','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"','https://www.ticketnetwork.com');