//
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([['Kathleen Edwards','Thunderbird Cafe','Pittsburgh, PA','Thursday','11/6/2025','8:00 PM','7265223','Kathleen-Edwards-11-6-2025'],['Kathleen Edwards','Bier Hall At Intuition Ale Works','Jacksonville, FL','Friday','2/6/2026','7:00 PM','7514216','Kathleen-Edwards-2-6-2026'],['Kathleen Edwards','Workplay Theatre','Birmingham, AL','Saturday','2/7/2026','8:00 PM','7512136','Kathleen-Edwards-2-7-2026'],['Kathleen Edwards','Chickie Wah Wah','New Orleans, LA','Sunday','2/8/2026','8:00 PM','7516543','Kathleen-Edwards-2-8-2026'],['Kathleen Edwards','The Heights','Houston, TX','Tuesday','2/10/2026','8:00 PM','7510416','Kathleen-Edwards-2-10-2026'],['Kathleen Edwards','Antone's Nightclub','Austin, TX','Wednesday','2/11/2026','8:00 PM','7514236','Kathleen-Edwards-2-11-2026'],['Kathleen Edwards','Antone's Nightclub','Austin, TX','Thursday','2/12/2026','8:00 PM','7514237','Kathleen-Edwards-2-12-2026'],['Kathleen Edwards','Hotel Congress Plaza','Tucson, AZ','Sunday','2/15/2026','7:00 PM','7516751','Kathleen-Edwards-2-15-2026'],['Kathleen Edwards','Troubadour','West Hollywood, CA','Tuesday','2/17/2026','7:00 PM','7516752','Kathleen-Edwards-2-17-2026'],['Kathleen Edwards','Troubadour','West Hollywood, CA','Wednesday','2/18/2026','7:00 PM','7516753','Kathleen-Edwards-2-18-2026'],['Kathleen Edwards','The Great American Music Hall','San Francisco, CA','Friday','2/20/2026','8:00 PM','7510415','Kathleen-Edwards-2-20-2026'],['Kathleen Edwards','Sweetwater Music Hall','Mill Valley, CA','Saturday','2/21/2026','8:00 PM','7516754','Kathleen-Edwards-2-21-2026'],['Kathleen Edwards','The Center For The Arts - Grass Valley','Grass Valley, CA','Sunday','2/22/2026','7:00 PM','7516755','Kathleen-Edwards-2-22-2026'],['Kathleen Edwards','Wonder Ballroom','Portland, OR','Tuesday','2/24/2026','8:00 PM','7509351','Kathleen-Edwards-2-24-2026'],['Kathleen Edwards','The Neptune Theatre','Seattle, WA','Wednesday','2/25/2026','8:00 PM','7509438','Kathleen-Edwards-2-25-2026'],['Kathleen Edwards','Commodore Ballroom','Vancouver, Canada','Friday','2/27/2026','7:00 PM','7510158','Kathleen-Edwards-2-27-2026'],['Kathleen Edwards','Royal Theatre - BC','Victoria, Canada','Saturday','2/28/2026','8:00 PM','7511785','Kathleen-Edwards-2-28-2026']],'Kathleen Edwards','http://www.ticketnetwork.com/en/search/?text=Kathleen%20Edwards');