//
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([['Gladys Knight','HEB Performance Hall At Tobin Center for the Performing Arts','San Antonio, TX','Monday','3/2/2026','7:30 PM','7635814','Gladys-Knight-3-2-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Tuesday','3/3/2026','7:30 PM','7002309','Witness-For-The-Prosecution-3-3-2026'],['The Bad Plus, Chris Potter & Craig Taborn - Tribute to Keith Jarrett's American Quartet','Concert Hall at Singletary Center for the Arts','Lexington, KY','Tuesday','3/3/2026','7:30 PM','7352823','The-Bad-Plus--Chris-Potter---Craig-Taborn---Tribute-to-Keith-Jarrett-s-American-Quartet-3-3-2026'],['The Wiz','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Tuesday','3/3/2026','7:30 PM','6963358','The-Wiz-3-3-2026'],['Vitamin String Quartet','Jones Hall for the Performing Arts','Houston, TX','Tuesday','3/3/2026','7:30 PM','7393707','Vitamin-String-Quartet-3-3-2026'],['Clue Live Screening with Lesley Ann Warren','Uihlein Hall at Marcus Center For The Performing Arts','Milwaukee, WI','Tuesday','3/3/2026','7:30 PM','7583047','Clue-Live-Screening-with-Lesley-Ann-Warren-3-3-2026'],['Beetlejuice - The Musical','Silva Concert Hall at Hult Center For The Performing Arts','Eugene, OR','Tuesday','3/3/2026','7:30 PM','7120579','Beetlejuice---The-Musical-3-3-2026'],['Gabby's Dollhouse Live!','Meridian Hall','Toronto, Canada','Wednesday','3/4/2026','6:30 PM','7429979','Gabby-s-Dollhouse-Live--3-4-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Wednesday','3/4/2026','7:30 PM','7002310','Witness-For-The-Prosecution-3-4-2026'],['The Wiz','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Wednesday','3/4/2026','7:30 PM','6963359','The-Wiz-3-4-2026']],'"All For The Hall"','https://www.ticketnetwork.com');