//
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-02A
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([['Keb Mo','Carolina Theatre - Durham','Durham, NC','Tuesday','2/24/2026','8:00 PM','7428259','Keb-Mo-2-24-2026'],['Keb Mo','Capital One Hall','Tysons Corner, VA','Wednesday','2/25/2026','8:00 PM','7425579','Keb-Mo-2-25-2026'],['Keb Mo','The Playhouse on Rodney Square','Wilmington, DE','Friday','2/27/2026','8:00 PM','7428260','Keb-Mo-2-27-2026'],['Keb Mo','Academy of Music Theatre - MA','Northampton, MA','Saturday','2/28/2026','8:00 PM','7428261','Keb-Mo-2-28-2026'],['Keb Mo','Garde Arts Center','New London, CT','Sunday','3/1/2026','7:00 PM','7428262','Keb-Mo-3-1-2026'],['Keb Mo','Nashua Center for the Arts','Nashua, NH','Tuesday','3/3/2026','7:30 PM','7428263','Keb-Mo-3-3-2026'],['Keb Mo','Troy Savings Bank Music Hall','Troy, NY','Wednesday','3/4/2026','8:00 PM','7465549','Keb-Mo-3-4-2026'],['Keb Mo','State Theatre of Ithaca','Ithaca, NY','Friday','3/6/2026','8:00 PM','7428035','Keb-Mo-3-6-2026'],['Keb Mo','Asbury Hall at Babeville','Buffalo, NY','Saturday','3/7/2026','8:00 PM','7425288','Keb-Mo-3-7-2026'],['Keb Mo','Concert Hall At Soka Performing Arts Center','Aliso Viejo, CA','Saturday','3/28/2026','8:00 PM','7407092','Keb-Mo-3-28-2026'],['Keb Mo','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Sunday','3/29/2026','9:00 PM','7611431','Keb-Mo-3-29-2026'],['Keb Mo','SFJAZZ Center - Miner Auditorium','San Francisco, CA','Thursday','4/2/2026','7:30 PM','7372315','Keb-Mo-4-2-2026'],['Keb Mo','SFJAZZ Center - Miner Auditorium','San Francisco, CA','Friday','4/3/2026','7:30 PM','7372316','Keb-Mo-4-3-2026'],['Keb Mo','SFJAZZ Center - Miner Auditorium','San Francisco, CA','Saturday','4/4/2026','7:30 PM','7372317','Keb-Mo-4-4-2026'],['Keb Mo','SFJAZZ Center - Miner Auditorium','San Francisco, CA','Sunday','4/5/2026','7:00 PM','7372318','Keb-Mo-4-5-2026'],['Keb Mo','The Center For The Arts - Grass Valley','Grass Valley, CA','Tuesday','4/7/2026','7:00 PM','7610251','Keb-Mo-4-7-2026']],'keb mo','http://www.ticketnetwork.com/en/search/?text=keb%20mo');