//
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([['Witness For The Prosecution','London County Hall','London, United Kingdom','Thursday','5/28/2026','2:30 PM','7388473','Witness-For-The-Prosecution-5-28-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Thursday','5/28/2026','7:30 PM','7388474','Witness-For-The-Prosecution-5-28-2026'],['Pacific Symphony: Alexander Shelley - America at 250','Segerstrom Center For The Arts - Renee and Henry Segerstrom Concert Hall','Costa Mesa, CA','Thursday','5/28/2026','8:00 PM','7114310','Pacific-Symphony--Alexander-Shelley---America-at-250-5-28-2026'],['Ilana Glazer','Charleston Music Hall','Charleston, SC','Friday','5/29/2026','7:00 PM','7774605','Ilana-Glazer-5-29-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Friday','5/29/2026','7:30 PM','7388475','Witness-For-The-Prosecution-5-29-2026'],['Jacksonville Symphony: Matthew Wardell - The Music of Elton John With Michael Cavanaugh','Jacoby Symphony Hall At Jacksonville Center for the Performing Arts','Jacksonville, FL','Friday','5/29/2026','7:30 PM','7265799','Jacksonville-Symphony--Matthew-Wardell---The-Music-of-Elton-John-With-Michael-Cavanaugh-5-29-2026'],['Top Gun: Maverick In Concert','Meridian Hall','Toronto, Canada','Friday','5/29/2026','7:30 PM','7564380','Top-Gun--Maverick-In-Concert-5-29-2026'],['Pittsburgh Symphony Orchestra: Gemma New - Scheherazade','Heinz Hall','Pittsburgh, PA','Friday','5/29/2026','7:30 PM','7627141','Pittsburgh-Symphony-Orchestra--Gemma-New---Scheherazade-5-29-2026'],['Austin Symphony Orchestra: Video Games Live','Dell Hall at Long Center For The Performing Arts','Austin, TX','Friday','5/29/2026','7:30 PM','7289243','Austin-Symphony-Orchestra--Video-Games-Live-5-29-2026'],['Houston Symphony: Lights! Camera! Action! - 100 Years of Epic Film Scores','Jones Hall for the Performing Arts','Houston, TX','Friday','5/29/2026','7:30 PM','7277789','Houston-Symphony--Lights--Camera--Action----100-Years-of-Epic-Film-Scores-5-29-2026']],'"All For The Hall"','https://www.ticketnetwork.com');