//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Futurebirds - 2 Day Pass','Charleston Music Hall','Charleston, SC','Tuesday','12/30/2025','TBD','7356182','Futurebirds---2-Day-Pass-12-30-2025'],['New Year's Eve Gala: From 42nd Street to the MET','Harold Miossi Hall at Christopher Cohan Performing Arts Center','San Luis Obispo, CA','Wednesday','12/31/2025','7:30 PM','7546601','New-Year-s-Eve-Gala--From-42nd-Street-to-the-MET-12-31-2025'],['Futurebirds','Charleston Music Hall','Charleston, SC','Wednesday','12/31/2025','9:00 PM','7356181','Futurebirds-12-31-2025'],['Hamilton','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Thursday','1/1/2026','7:30 PM','6963312','Hamilton-1-1-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Friday','1/2/2026','2:30 PM','7002240','Witness-For-The-Prosecution-1-2-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Friday','1/2/2026','7:30 PM','7002241','Witness-For-The-Prosecution-1-2-2026'],['Hamilton','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Friday','1/2/2026','7:30 PM','6963313','Hamilton-1-2-2026'],['Shen Yun Performing Arts','Dell Hall at Long Center For The Performing Arts','Austin, TX','Friday','1/2/2026','7:30 PM','7192655','Shen-Yun-Performing-Arts-1-2-2026'],['Nat King Cole New Year','Jones Hall for the Performing Arts','Houston, TX','Friday','1/2/2026','7:30 PM','7263155','Nat-King-Cole-New-Year-1-2-2026'],['Wing Chun Dance Drama','Meridian Hall','Toronto, Canada','Friday','1/2/2026','8:00 PM','7383906','Wing-Chun-Dance-Drama-1-2-2026']],'"All For The Hall"','https://www.ticketnetwork.com');