//
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([['Billy Idol & Joan Jett and The Blackhearts','Utah First Credit Union Amphitheatre','Salt Lake City, UT','Friday','9/5/2025','7:30 PM','6944292','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-5-2025'],['Billy Idol & Joan Jett and The Blackhearts','Acrisure Arena','Thousand Palms, CA','Friday','9/12/2025','7:30 PM','6944293','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-12-2025'],['Billy Idol & Joan Jett and The Blackhearts','Greek Theatre - U.C. Berkeley','Berkeley, CA','Sunday','9/14/2025','6:30 PM','6944294','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-14-2025'],['Billy Idol & Joan Jett and The Blackhearts','Toyota Amphitheatre','Wheatland, CA','Wednesday','9/17/2025','7:30 PM','6944295','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-17-2025'],['Billy Idol & Joan Jett and The Blackhearts','Cascades Amphitheater - WA','Ridgefield, WA','Friday','9/19/2025','7:30 PM','6944296','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-19-2025'],['Billy Idol & Joan Jett and The Blackhearts','Climate Pledge Arena','Seattle, WA','Saturday','9/20/2025','7:30 PM','6944297','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-20-2025'],['Billy Idol & Joan Jett and The Blackhearts','North Island Credit Union Amphitheatre','Chula Vista, CA','Tuesday','9/23/2025','7:30 PM','6944298','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-23-2025'],['Billy Idol & Joan Jett and The Blackhearts','The Kia Forum','Inglewood, CA','Thursday','9/25/2025','7:30 PM','6944299','Billy-Idol---Joan-Jett-and-The-Blackhearts-9-25-2025'],['Generation Idol - Billy Idol Tribute Band','The Showroom at Casino Arizona','Scottsdale, AZ','Friday','10/31/2025','7:30 PM','7267301','Generation-Idol---Billy-Idol-Tribute-Band-10-31-2025'],['Generation Idol - Billy Idol Tribute Band','The Showroom at Casino Arizona','Scottsdale, AZ','Saturday','11/1/2025','7:30 PM','7267279','Generation-Idol---Billy-Idol-Tribute-Band-11-1-2025']],'Billy Idol','http://www.ticketnetwork.com/en/search/?text=Billy%20Idol');