//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Bare Knuckle Boxing','Xfinity Mobile Arena','Philadelphia, PA','Saturday','2/7/2026','7:00 PM','7560073','Bare-Knuckle-Boxing-2-7-2026'],['BOLO','The Ave Live','Philadelphia, PA','Saturday','2/7/2026','9:30 PM','7630718','BOLO-2-7-2026'],['Kurt Braunohler','Helium Comedy Club - Philadelphia','Philadelphia, PA','Saturday','2/7/2026','9:30 PM','7641647','Kurt-Braunohler-2-7-2026'],['Drexel Dragons Women's Basketball vs. Monmouth Hawks','John A. Daskalakis Athletic Center','Philadelphia, PA','Sunday','2/8/2026','1:00 PM','7602847','Drexel-Dragons-Women-s-Basketball-vs--Monmouth-Hawks-2-8-2026'],['Sherlock Holmes: The Great Detective','Walnut Street Theatre','Philadelphia, PA','Sunday','2/8/2026','2:00 PM','7246068','Sherlock-Holmes--The-Great-Detective-2-8-2026'],['Paul Bumbry - Tribute to Frankie Beverly and Maze','City Winery - Philadelphia ','Philadelphia, PA','Sunday','2/8/2026','7:30 PM','7673079','Paul-Bumbry---Tribute-to-Frankie-Beverly-and-Maze-2-8-2026'],['Punch Line Philly Open Mic Night','Callback Bar at Punch Line Comedy Club - Philadelphia','Philadelphia, PA','Monday','2/9/2026','7:00 PM','7638169','Punch-Line-Philly-Open-Mic-Night-2-9-2026'],['Mat Kerekes','The Foundry - Philadelphia','Philadelphia, PA','Monday','2/9/2026','8:00 PM','7506670','Mat-Kerekes-2-9-2026'],['Brandi Carlile & The Head and The Heart','Xfinity Mobile Arena','Philadelphia, PA','Tuesday','2/10/2026','7:00 PM','7509607','Brandi-Carlile---The-Head-and-The-Heart-2-10-2026'],['Saint Joseph's Hawks vs. Fordham Rams','Michael J. Hagan Arena','Philadelphia, PA','Tuesday','2/10/2026','7:00 PM','7451379','Saint-Joseph-s-Hawks-vs--Fordham-Rams-2-10-2026']],'Philadelphia Pa','https://www.ticketnetwork.com');