//
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([['Billy Idol & Joan Jett and The Blackhearts','Talking Stick Resort Amphitheatre','Phoenix, AZ','Wednesday','4/30/2025','7:30 PM','6944273','Billy-Idol---Joan-Jett-and-The-Blackhearts-4-30-2025'],['Billy Idol & Joan Jett and The Blackhearts','The Cynthia Woods Mitchell Pavilion','Spring, TX','Saturday','5/3/2025','7:30 PM','6944274','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-3-2025'],['Billy Idol & Joan Jett and The Blackhearts','Moody Center ATX','Austin, TX','Sunday','5/4/2025','7:30 PM','6944275','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-4-2025'],['Billy Idol & Joan Jett and The Blackhearts','Dickies Arena','Fort Worth, TX','Wednesday','5/7/2025','7:30 PM','6944276','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-7-2025'],['Billy Idol & Joan Jett and The Blackhearts','Ameris Bank Amphitheatre','Alpharetta, GA','Friday','5/9/2025','7:30 PM','6944277','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-9-2025'],['Billy Idol & Joan Jett and The Blackhearts','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Saturday','5/10/2025','7:30 PM','6944278','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-10-2025'],['Billy Idol & Joan Jett and The Blackhearts','Amerant Bank Arena','Sunrise, FL','Tuesday','5/13/2025','7:30 PM','6944316','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-13-2025'],['Billy Idol & Joan Jett and The Blackhearts','PNC Music Pavilion - Charlotte','Charlotte, NC','Friday','5/16/2025','7:30 PM','6944279','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-16-2025'],['Billy Idol & Joan Jett and The Blackhearts','Bridgestone Arena','Nashville, TN','Saturday','5/17/2025','7:30 PM','6944280','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-17-2025'],['Billy Idol & Joan Jett and The Blackhearts','Riverbend Music Center','Cincinnati, OH','Wednesday','5/21/2025','7:30 PM','6944282','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-21-2025']],'Billy Idol','http://www.ticketnetwork.com/en/search/?text=Billy Idol');