//
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([['Ballyhoo!','The Hi-Fi','Indianapolis, IN','Tuesday','4/7/2026','8:00 PM','7679999','Ballyhoo--4-7-2026'],['Ballyhoo!','Aggie Theatre','Fort Collins, CO','Friday','4/10/2026','8:00 PM','7679045','Ballyhoo--4-10-2026'],['Ballyhoo!','Kamikazes','Ogden, UT','Saturday','4/11/2026','7:00 PM','7679792','Ballyhoo--4-11-2026'],['Ballyhoo!','Cypress Reno','Reno, NV','Sunday','4/12/2026','8:00 PM','7679338','Ballyhoo--4-12-2026'],['Reggae Rise Up Arizona: Rebelution, Slightly Stoopid, Dirty Heads & Soja - 3 Day Pass','Tempe Beach Park','Tempe, AZ','Friday','4/17/2026','TBD','7090453','Reggae-Rise-Up-Arizona--Rebelution--Slightly-Stoopid--Dirty-Heads---Soja---3-Day-Pass-4-17-2026'],['Ballyhoo!','The Observatory - Santa Ana','Santa Ana, CA','Friday','4/17/2026','7:00 PM','7635976','Ballyhoo--4-17-2026'],['Bumpin' Uglies & Ballyhoo!','Bottom Lounge','Chicago, IL','Thursday','4/30/2026','7:00 PM','7699558','Bumpin--Uglies---Ballyhoo--4-30-2026'],['Bumpin' Uglies & Ballyhoo!','Elevation at The Intersection','Grand Rapids, MI','Friday','5/1/2026','8:00 PM','7616783','Bumpin--Uglies---Ballyhoo--5-1-2026'],['California Roots Festival: Rebelution, J Boog, The Elovaters & Collie Buddz - 3 Day Pass','Monterey Fairgrounds','Monterey, CA','Friday','5/22/2026','TBD','7189525','California-Roots-Festival--Rebelution--J-Boog--The-Elovaters---Collie-Buddz---3-Day-Pass-5-22-2026']],'Ballyhoo!','http://www.ticketnetwork.com/en/search/?text=Ballyhoo!');