//
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-03A
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([['Jeris Johnson','Phantom Power','Millersville, PA','Friday','2/27/2026','7:00 PM','7626141','Jeris-Johnson-2-27-2026'],['Jeris Johnson','Artie's Bar and Grill','Frenchtown, NJ','Saturday','2/28/2026','5:00 PM','7641899','Jeris-Johnson-2-28-2026'],['Jeris Johnson','Jergel's Rhythm Grille','Warrendale, PA','Sunday','3/1/2026','7:00 PM','7613969','Jeris-Johnson-3-1-2026'],['Jeris Johnson','The Vault - Detroit','Detroit, MI','Wednesday','3/4/2026','6:00 PM','7714715','Jeris-Johnson-3-4-2026'],['Jeris Johnson','A and R Music Bar','Columbus, OH','Thursday','3/5/2026','8:00 PM','7614594','Jeris-Johnson-3-5-2026'],['Jeris Johnson','The WC Social Club','West Chicago, IL','Friday','3/6/2026','7:00 PM','7608257','Jeris-Johnson-3-6-2026'],['Jeris Johnson','Fine Line Music Cafe','Minneapolis, MN','Saturday','3/7/2026','7:00 PM','7614592','Jeris-Johnson-3-7-2026'],['Jeris Johnson','Majestic Theatre Madison','Madison, WI','Monday','3/9/2026','8:00 PM','7614604','Jeris-Johnson-3-9-2026'],['Jeris Johnson','Warehouse Live Midtown','Houston, TX','Thursday','3/12/2026','8:00 PM','7625953','Jeris-Johnson-3-12-2026'],['Jeris Johnson','Nile Theater - AZ','Mesa, AZ','Tuesday','3/17/2026','7:00 PM','7740317','Jeris-Johnson-3-17-2026'],['Jeris Johnson','Whisky A Go Go','West Hollywood, CA','Wednesday','3/18/2026','6:00 PM','7613946','Jeris-Johnson-3-18-2026'],['Jeris Johnson','Brick & Mortar Music Hall','San Francisco, CA','Thursday','3/19/2026','8:30 PM','7624501','Jeris-Johnson-3-19-2026']],'Jeris Johnson','http://www.ticketnetwork.com/en/search/?text=Jeris%20Johnson');