//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Jerry Seinfeld','Sheas Performing Arts Center','Buffalo, NY','Saturday','1/31/2026','5:00 PM','7495893','Jerry-Seinfeld-1-31-2026'],['Corey Holcomb','Funny Bone Comedy Club - Albany','Albany, NY','Saturday','1/31/2026','6:30 PM','7454346','Corey-Holcomb-1-31-2026'],['Mojo Brookzz','Funny Bone Comedy Club - Syracuse','Syracuse, NY','Saturday','1/31/2026','6:30 PM','7316236','Mojo-Brookzz-1-31-2026'],['Josh Johnson','Crouse Hinds Theater - Mulroy Civic Center At Oncenter','Syracuse, NY','Saturday','1/31/2026','7:00 PM','7021453','Josh-Johnson-1-31-2026'],['Sherri Shepherd','Patchogue Theater For The Performing Arts','Patchogue, NY','Saturday','1/31/2026','7:00 PM','7472067','Sherri-Shepherd-1-31-2026'],['Why Are You Single?','The Bell House','Brooklyn, NY','Saturday','1/31/2026','7:30 PM','7479775','Why-Are-You-Single--1-31-2026'],['Jim Jefferies','Beacon Theatre - NY','New York, NY','Saturday','1/31/2026','7:30 PM','7499350','Jim-Jefferies-1-31-2026'],['Jerry Seinfeld','Sheas Performing Arts Center','Buffalo, NY','Saturday','1/31/2026','8:00 PM','7484016','Jerry-Seinfeld-1-31-2026'],['Joey Diaz','St. George Theatre','Staten Island, NY','Saturday','1/31/2026','8:00 PM','7490669','Joey-Diaz-1-31-2026'],['Mojo Brookzz','Funny Bone Comedy Club - Syracuse','Syracuse, NY','Saturday','1/31/2026','9:15 PM','7316235','Mojo-Brookzz-1-31-2026'],['Corey Holcomb','Funny Bone Comedy Club - Albany','Albany, NY','Saturday','1/31/2026','9:15 PM','7454347','Corey-Holcomb-1-31-2026'],['Live From Long Island with Sekou Ali','Governor's At The Brokerage In Bellmore','Bellmore, NY','Saturday','1/31/2026','9:30 PM','7566157','Live-From-Long-Island-with-Sekou-Ali-1-31-2026'],['Unmatched - A Comedy Show & Screening','The Bell House','Brooklyn, NY','Saturday','1/31/2026','10:00 PM','7643468','Unmatched---A-Comedy-Show---Screening-1-31-2026'],['Eden McCoy & Rory Gibson','Governor's At The Brokerage In Bellmore','Bellmore, NY','Sunday','2/1/2026','12:00 PM','7423932','Eden-McCoy---Rory-Gibson-2-1-2026'],['Mojo Brookzz','Funny Bone Comedy Club - Syracuse','Syracuse, NY','Sunday','2/1/2026','4:00 PM','7701656','Mojo-Brookzz-2-1-2026']],'comedy new york','http://www.ticketnetwork.com/en/search/?text=comedy%20new%20york');