//
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-04A
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([['Uncle Acid and The Deadbeats','Neighborhood Theatre','Charlotte, NC','Tuesday','9/8/2026','8:00 PM','8019130','Uncle-Acid-and-The-Deadbeats-9-8-2026'],['Uncle Acid and The Deadbeats','Brooklyn Bowl - Nashville','Nashville, TN','Thursday','9/10/2026','8:00 PM','8019133','Uncle-Acid-and-The-Deadbeats-9-10-2026'],['Uncle Acid and The Deadbeats','Radio/East','Austin, TX','Sunday','9/13/2026','3:00 PM','8019107','Uncle-Acid-and-The-Deadbeats-9-13-2026'],['Uncle Acid and The Deadbeats','The Bellwether','Los Angeles, CA','Sunday','9/20/2026','8:00 PM','8019135','Uncle-Acid-and-The-Deadbeats-9-20-2026'],['Uncle Acid and The Deadbeats','Knitting Factory Concert House - Boise','Boise, ID','Thursday','9/24/2026','8:00 PM','8019136','Uncle-Acid-and-The-Deadbeats-9-24-2026'],['Uncle Acid and The Deadbeats','The Showbox','Seattle, WA','Saturday','9/26/2026','8:00 PM','8019104','Uncle-Acid-and-The-Deadbeats-9-26-2026'],['Uncle Acid and The Deadbeats','Gothic Theatre','Englewood, CO','Wednesday','9/30/2026','8:00 PM','8019105','Uncle-Acid-and-The-Deadbeats-9-30-2026'],['Uncle Acid and The Deadbeats','Varsity Theater - MN','Minneapolis, MN','Friday','10/2/2026','7:00 PM','8019137','Uncle-Acid-and-The-Deadbeats-10-2-2026'],['Uncle Acid and The Deadbeats','Theatre Beanfield','Montreal, Canada','Wednesday','10/7/2026','8:00 PM','8019106','Uncle-Acid-and-The-Deadbeats-10-7-2026'],['Uncle Acid and The Deadbeats','Nevermore Hall','Baltimore, MD','Friday','10/9/2026','8:00 PM','8019138','Uncle-Acid-and-The-Deadbeats-10-9-2026'],['Uncle Acid and The Deadbeats','Irving Plaza','New York, NY','Sunday','10/11/2026','7:00 PM','8019139','Uncle-Acid-and-The-Deadbeats-10-11-2026']],'Uncle Acid and The Deadbeats','http://www.ticketnetwork.com/en/search/?text=Uncle Acid and The Deadbeats');