//
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([['This Will Destroy You','Ferris Wheelers Backyard and BBQ','Dallas, TX','Wednesday','6/11/2025','7:00 PM','7011896','This-Will-Destroy-You-6-11-2025'],['This Will Destroy You','The Pyramid Scheme','Grand Rapids, MI','Sunday','6/15/2025','7:00 PM','6935964','This-Will-Destroy-You-6-15-2025'],['This Will Destroy You','Sonia','Cambridge, MA','Monday','6/16/2025','6:30 PM','7019715','This-Will-Destroy-You-6-16-2025'],['This Will Destroy You','Lees Palace','Toronto, Canada','Tuesday','6/17/2025','7:30 PM','7011342','This-Will-Destroy-You-6-17-2025'],['This Will Destroy You','Black Cat - DC','Washington, DC','Sunday','6/22/2025','7:00 PM','7011368','This-Will-Destroy-You-6-22-2025'],['This Will Destroy You','The Basement East - Nashville','Nashville, TN','Tuesday','6/24/2025','8:00 PM','7011371','This-Will-Destroy-You-6-24-2025'],['This Will Destroy You','Open Chord Music','Knoxville, TN','Wednesday','6/25/2025','8:00 PM','7019716','This-Will-Destroy-You-6-25-2025'],['This Will Destroy You','Eulogy','Asheville, NC','Thursday','6/26/2025','8:00 PM','7011898','This-Will-Destroy-You-6-26-2025'],['This Will Destroy You','The Bourbon Hall','Louisville, KY','Friday','6/27/2025','7:30 PM','7011895','This-Will-Destroy-You-6-27-2025'],['This Will Destroy You','Hell at The Masquerade - GA','Atlanta, GA','Saturday','6/28/2025','7:00 PM','7010578','This-Will-Destroy-You-6-28-2025'],['This Will Destroy You','White Oak Music Hall - Upstairs','Houston, TX','Monday','6/30/2025','8:00 PM','7011894','This-Will-Destroy-You-6-30-2025'],['This Will Destroy You','29th Street Ballroom','Austin, TX','Tuesday','7/1/2025','8:00 PM','7011897','This-Will-Destroy-You-7-1-2025'],['This Will Destroy You','The Chapel','San Francisco, CA','Friday','7/11/2025','9:00 PM','7022192','This-Will-Destroy-You-7-11-2025'],['This Will Destroy You','Wow Hall','Eugene, OR','Saturday','7/12/2025','8:00 PM','6936610','This-Will-Destroy-You-7-12-2025'],['This Will Destroy You','The Urban Lounge','Salt Lake City, UT','Saturday','7/19/2025','7:00 PM','7011899','This-Will-Destroy-You-7-19-2025'],['This Will Destroy You','The Perplexiplex At Meow Wolf's Convergence Station','Denver, CO','Sunday','7/20/2025','8:00 PM','6931839','This-Will-Destroy-You-7-20-2025']],'This Will Destroy You','http://www.ticketnetwork.com/en/search/?text=This Will Destroy You');