//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['The Band Perry','Chumash Casino','Santa Ynez, CA','Friday','3/27/2026','8:00 PM','7687738','The-Band-Perry-3-27-2026'],['The Band Perry','Morongo Casino Resort and Spa','Cabazon, CA','Saturday','3/28/2026','9:00 PM','7684074','The-Band-Perry-3-28-2026'],['Perry Wayne','The Den PDX','Portland, OR','Saturday','4/4/2026','10:00 PM','7743198','Perry-Wayne-4-4-2026'],['The Band Perry','Ponte Vedra Concert Hall','Ponte Vedra Beach, FL','Wednesday','4/8/2026','8:00 PM','7708705','The-Band-Perry-4-8-2026'],['Spring Weekend Concert: Yung Gravy','Joan Perry Brock Center','Farmville, VA','Saturday','4/11/2026','7:00 PM','7798239','Spring-Weekend-Concert--Yung-Gravy-4-11-2026'],['The Band Perry','Seminole Casino Brighton Event Center','Okeechobee, FL','Saturday','4/11/2026','8:00 PM','7717703','The-Band-Perry-4-11-2026'],['The Band Perry','Gold Strike Casino Resort','Robinsonville, MS','Thursday','4/16/2026','8:00 PM','7566720','The-Band-Perry-4-16-2026'],['The Band Perry','Jergel's Rhythm Grille','Warrendale, PA','Thursday','4/23/2026','8:00 PM','7703686','The-Band-Perry-4-23-2026'],['The Band Perry','Performing Arts Center at Kent State Tuscarawas','New Philadelphia, OH','Friday','4/24/2026','7:30 PM','7747993','The-Band-Perry-4-24-2026'],['The Band Perry & Emily Ann Roberts','Minnesota Discovery Center','Chisholm, MN','Thursday','6/11/2026','5:00 PM','7797472','The-Band-Perry---Emily-Ann-Roberts-6-11-2026']],'The Band Perry','https://www.ticketnetwork.com');