//
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([['The Neighbourhood','Moody Center ATX','Austin, TX','Saturday','3/28/2026','7:30 PM','7536900','The-Neighbourhood-3-28-2026'],['The Neighbourhood','Dickies Arena','Fort Worth, TX','Tuesday','3/31/2026','7:30 PM','7536902','The-Neighbourhood-3-31-2026'],['The Neighbourhood','The Armory - Minneapolis','Minneapolis, MN','Thursday','4/2/2026','7:30 PM','7536903','The-Neighbourhood-4-2-2026'],['The Neighbourhood','Scotiabank Arena','Toronto, Canada','Monday','4/6/2026','7:30 PM','7536913','The-Neighbourhood-4-6-2026'],['The Neighbourhood','TD Garden','Boston, MA','Wednesday','4/8/2026','7:30 PM','7536904','The-Neighbourhood-4-8-2026'],['The Neighbourhood','The Anthem - D.C.','Washington, DC','Friday','4/10/2026','7:30 PM','7536906','The-Neighbourhood-4-10-2026'],['The Neighbourhood','The Anthem - D.C.','Washington, DC','Saturday','4/11/2026','7:30 PM','7547961','The-Neighbourhood-4-11-2026'],['The Neighbourhood','Madison Square Garden','New York, NY','Tuesday','4/14/2026','7:30 PM','7536907','The-Neighbourhood-4-14-2026'],['The Neighbourhood','Velodrome Berlin','Berlin, Germany','Thursday','5/7/2026','8:00 PM','7542220','The-Neighbourhood-5-7-2026'],['The Neighbourhood','Ziggo Dome','Amsterdam, Netherlands','Friday','5/8/2026','8:00 PM','7542219','The-Neighbourhood-5-8-2026'],['The Neighbourhood','Lanxess Arena','Köln, Germany','Sunday','5/10/2026','8:00 PM','7542221','The-Neighbourhood-5-10-2026'],['The Neighbourhood','O2 Arena - London','London, United Kingdom','Friday','5/15/2026','6:30 PM','7542218','The-Neighbourhood-5-15-2026'],['Bonnaroo Music & Arts Festival: The Strokes, Rufus Du Sol & Noah Kahan - 4 Day Pass','The Bonnaroo Farm','Manchester, TN','Thursday','6/11/2026','TBD','7277234','Bonnaroo-Music---Arts-Festival--The-Strokes--Rufus-Du-Sol---Noah-Kahan---4-Day-Pass-6-11-2026'],['The Neighbourhood','Spark Arena','Auckland, New Zealand','Saturday','7/4/2026','7:00 PM','7542347','The-Neighbourhood-7-4-2026'],['The Neighbourhood','Rogers Arena','Vancouver, Canada','Friday','10/2/2026','7:30 PM','7536915','The-Neighbourhood-10-2-2026'],['The Neighbourhood','Wamu Theater At Lumen Field Event Center','Seattle, WA','Saturday','10/3/2026','8:00 PM','7536908','The-Neighbourhood-10-3-2026'],['The Neighbourhood','Moda Center at the Rose Quarter','Portland, OR','Monday','10/5/2026','7:30 PM','7536909','The-Neighbourhood-10-5-2026'],['The Neighbourhood','Bill Graham Civic Auditorium','San Francisco, CA','Wednesday','10/7/2026','7:30 PM','7536910','The-Neighbourhood-10-7-2026'],['The Neighbourhood','The Kia Forum','Inglewood, CA','Friday','10/9/2026','7:30 PM','7536912','The-Neighbourhood-10-9-2026']],'the neighbourhood','http://www.ticketnetwork.com/en/search/?text=the%20neighbourhood');