//
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([['Fishbone','August Hall','San Francisco, CA','Thursday','4/9/2026','7:00 PM','7681919','Fishbone-4-9-2026'],['Fishbone','The Crocodile','Seattle, WA','Saturday','4/11/2026','6:00 PM','7681303','Fishbone-4-11-2026'],['Fishbone','The Urban Lounge','Salt Lake City, UT','Tuesday','4/14/2026','6:00 PM','7709409','Fishbone-4-14-2026'],['Fishbone','Bluebird Theater','Denver, CO','Wednesday','4/15/2026','7:00 PM','7682418','Fishbone-4-15-2026'],['Fishbone','The Shelter at Saint Andrews Hall','Detroit, MI','Sunday','4/19/2026','6:00 PM','7681482','Fishbone-4-19-2026'],['Fishbone','Skully's Music Diner','Columbus, OH','Monday','4/20/2026','7:00 PM','7683360','Fishbone-4-20-2026'],['Fishbone','Empire Underground','Albany, NY','Wednesday','4/22/2026','7:00 PM','7681921','Fishbone-4-22-2026'],['Fishbone','Brooklyn Bowl - Philadelphia','Philadelphia, PA','Friday','4/24/2026','7:30 PM','7681922','Fishbone-4-24-2026'],['Fishbone','Brooklyn Bowl - NY','Brooklyn, NY','Saturday','4/25/2026','7:30 PM','7681786','Fishbone-4-25-2026'],['Fishbone','The Sinclair Music Hall ','Cambridge, MA','Monday','4/27/2026','7:00 PM','7681467','Fishbone-4-27-2026'],['Fishbone','Black Cat - DC','Washington, DC','Tuesday','4/28/2026','6:00 PM','7681248','Fishbone-4-28-2026'],['Fishbone','Cat's Cradle','Carrboro, NC','Wednesday','4/29/2026','7:00 PM','7681250','Fishbone-4-29-2026'],['Fishbone','The Beacham','Orlando, FL','Friday','5/1/2026','6:00 PM','7683274','Fishbone-5-1-2026'],['Fishbone','Terminal West At King Plow Arts Center','Atlanta, GA','Saturday','5/2/2026','7:30 PM','7681466','Fishbone-5-2-2026'],['Fishbone','The Studio at The Bomb Factory','Dallas, TX','Monday','5/4/2026','7:00 PM','7681920','Fishbone-5-4-2026'],['Fishbone','Mohawk - Austin Outdoors','Austin, TX','Tuesday','5/5/2026','7:00 PM','7684003','Fishbone-5-5-2026'],['Fishbone','Nile Theater - AZ','Mesa, AZ','Thursday','5/7/2026','7:00 PM','7683353','Fishbone-5-7-2026'],['Fishbone','Teragram Ballroom','Los Angeles, CA','Friday','5/8/2026','6:30 PM','7682892','Fishbone-5-8-2026'],['Fishbone','The Glass House - CA','Pomona, CA','Saturday','5/9/2026','7:30 PM','7683363','Fishbone-5-9-2026']],'Fishbone','http://www.ticketnetwork.com/en/search/?text=Fishbone');