//
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([['Wallows','The Astro - NE','La Vista, NE','Thursday','2/6/2025','7:30 PM','6772030','Wallows-2-6-2025'],['Wallows','Vibrant Music Hall','Waukee, IA','Friday','2/7/2025','7:30 PM','6772031','Wallows-2-7-2025'],['Wallows','The Armory - Minneapolis','Minneapolis, MN','Saturday','2/8/2025','7:30 PM','6772027','Wallows-2-8-2025'],['Wallows','The Rave - Milwaukee','Milwaukee, WI','Monday','2/10/2025','7:30 PM','6772155','Wallows-2-10-2025'],['Wallows','GLC Live at 20 Monroe','Grand Rapids, MI','Tuesday','2/11/2025','6:30 PM','6772026','Wallows-2-11-2025'],['Wallows','The Andrew J Brady ICON Music Center','Cincinnati, OH','Wednesday','2/12/2025','7:30 PM','6772029','Wallows-2-12-2025'],['Wallows','Wellmont Theatre','Montclair, NJ','Friday','2/14/2025','7:30 PM','6772023','Wallows-2-14-2025'],['Wallows','Paramount Theatre - Huntington','Huntington, NY','Saturday','2/15/2025','7:30 PM','6772021','Wallows-2-15-2025'],['Wallows','The Strand Theatre - RI','Providence, RI','Sunday','2/16/2025','7:30 PM','6772156','Wallows-2-16-2025'],['Wallows','UPMC Events Center','Moon, PA','Tuesday','2/18/2025','7:30 PM','6772028','Wallows-2-18-2025'],['Wallows','The Fillmore - Charlotte','Charlotte, NC','Wednesday','2/19/2025','7:30 PM','6772024','Wallows-2-19-2025'],['Wallows','The Fillmore - Charlotte','Charlotte, NC','Thursday','2/20/2025','7:30 PM','6772025','Wallows-2-20-2025'],['Wallows','St. Augustine Amphitheatre','St. Augustine, FL','Saturday','2/22/2025','7:30 PM','6772022','Wallows-2-22-2025'],['Wallows','The BayCare Sound','Clearwater, FL','Sunday','2/23/2025','6:30 PM','6772157','Wallows-2-23-2025'],['Wallows','War Memorial Auditorium - FL','Fort Lauderdale, FL','Monday','2/24/2025','7:30 PM','6772158','Wallows-2-24-2025']],'Wallows','http://www.ticketnetwork.com/en/search/?text=Wallows');