//
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([['Tom Papa','Charleston Music Hall','Charleston, SC','Friday','1/30/2026','7:00 PM','7414729','Tom-Papa-1-30-2026'],['Suffs','Mortensen Hall at Bushnell Theatre','Hartford, CT','Friday','1/30/2026','7:30 PM','7111734','Suffs-1-30-2026'],['Jacksonville Symphony: Silly Love Songs - McCartney, Cher, Whitney & More','Jacoby Symphony Hall At Jacksonville Center for the Performing Arts','Jacksonville, FL','Friday','1/30/2026','7:30 PM','7265808','Jacksonville-Symphony--Silly-Love-Songs---McCartney--Cher--Whitney---More-1-30-2026'],['Pittsburgh Symphony Orchestra: Rodgers And Hammerstein's South Pacific in Concert','Heinz Hall','Pittsburgh, PA','Friday','1/30/2026','7:30 PM','7627074','Pittsburgh-Symphony-Orchestra--Rodgers-And-Hammerstein-s-South-Pacific-in-Concert-1-30-2026'],['Water for Elephants - The Musical','Sarofim Hall - Hobby Center','Houston, TX','Friday','1/30/2026','7:30 PM','6983931','Water-for-Elephants---The-Musical-1-30-2026'],['Hamilton','Uihlein Hall at Marcus Center For The Performing Arts','Milwaukee, WI','Friday','1/30/2026','7:30 PM','7046931','Hamilton-1-30-2026'],['Edmonton Symphony Orchestra Pops: The Billy Joel Songbook','Francis Winspear Centre','Edmonton, Canada','Friday','1/30/2026','7:30 PM','7559596','Edmonton-Symphony-Orchestra-Pops--The-Billy-Joel-Songbook-1-30-2026'],['The Notebook - The Musical','Segerstrom Center For The Arts - Segerstrom Hall','Costa Mesa, CA','Friday','1/30/2026','7:30 PM','7047290','The-Notebook---The-Musical-1-30-2026'],['Harry Potter and the Order of the Phoenix In Concert','Silva Concert Hall at Hult Center For The Performing Arts','Eugene, OR','Friday','1/30/2026','7:30 PM','7283710','Harry-Potter-and-the-Order-of-the-Phoenix-In-Concert-1-30-2026'],['Bronfman Plays Beethoven','Knight Concert Hall At The Adrienne Arsht Center','Miami, FL','Friday','1/30/2026','8:00 PM','7354277','Bronfman-Plays-Beethoven-1-30-2026']],'"All For The Hall"','https://www.ticketnetwork.com');