//
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([['The Hives','Stubbs Waller Creek Amphitheater','Austin, TX','Monday','9/8/2025','8:00 PM','7072107','The-Hives-9-8-2025'],['The Hives','House Of Blues - Houston','Houston, TX','Tuesday','9/9/2025','7:00 PM','7072016','The-Hives-9-9-2025'],['The Hives','House Of Blues - Dallas','Dallas, TX','Wednesday','9/10/2025','8:00 PM','7072112','The-Hives-9-10-2025'],['The Hives','Ogden Theatre','Denver, CO','Friday','9/12/2025','8:00 PM','7072113','The-Hives-9-12-2025'],['The Hives','The Union Event Center','Salt Lake City, UT','Saturday','9/13/2025','8:00 PM','7072018','The-Hives-9-13-2025'],['The Hives','Showbox SoDo','Seattle, WA','Monday','9/15/2025','8:00 PM','7072114','The-Hives-9-15-2025'],['The Hives','Commodore Ballroom','Vancouver, Canada','Tuesday','9/16/2025','7:00 PM','7072038','The-Hives-9-16-2025'],['The Hives','Revolution Hall - Portland','Portland, OR','Wednesday','9/17/2025','8:00 PM','7072127','The-Hives-9-17-2025'],['The Hives','Ace of Spades','Sacramento, CA','Friday','9/19/2025','8:00 PM','7072017','The-Hives-9-19-2025'],['The Hives','Warfield','San Francisco, CA','Saturday','9/20/2025','8:00 PM','7072115','The-Hives-9-20-2025'],['The Hives','The Sound At The Del Mar Fairgrounds','Del Mar, CA','Monday','9/22/2025','8:00 PM','7072020','The-Hives-9-22-2025'],['The Hives','Hollywood Palladium','Los Angeles, CA','Thursday','9/25/2025','8:00 PM','7072015','The-Hives-9-25-2025']],'The Hives','http://www.ticketnetwork.com/en/search/?text=The%20Hives');