//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Falling In Reverse','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','8/30/2025','6:30 PM','7168467','Falling-In-Reverse-8-30-2025'],['Junior H','Credit Union 1 Amphitheatre','Tinley Park, IL','Sunday','8/31/2025','8:00 PM','7296643','Junior-H-8-31-2025'],['Junior H','Credit Union 1 Amphitheatre','Tinley Park, IL','Monday','9/1/2025','8:00 PM','7305874','Junior-H-9-1-2025'],['The Doobie Brothers','Credit Union 1 Amphitheatre','Tinley Park, IL','Wednesday','9/10/2025','7:00 PM','6980739','The-Doobie-Brothers-9-10-2025'],['Jason Aldean, Nate Smith & RaeLynn','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','9/13/2025','7:30 PM','6944235','Jason-Aldean--Nate-Smith---RaeLynn-9-13-2025'],['Conan Gray','Credit Union 1 Amphitheatre','Tinley Park, IL','Sunday','9/14/2025','8:00 PM','7185285','Conan-Gray-9-14-2025'],['Twenty One Pilots','Credit Union 1 Amphitheatre','Tinley Park, IL','Wednesday','9/24/2025','8:00 PM','7211919','Twenty-One-Pilots-9-24-2025'],['Papa Roach & Rise Against','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','9/27/2025','7:00 PM','6814088','Papa-Roach---Rise-Against-9-27-2025'],['Parker McCollum, Ashley Cooke & Hudson Westbrook','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','10/4/2025','7:30 PM','7053615','Parker-McCollum--Ashley-Cooke---Hudson-Westbrook-10-4-2025'],['Alice Cooper, Judas Priest & Corrosion of Conformity','Credit Union 1 Amphitheatre','Tinley Park, IL','Sunday','10/5/2025','6:45 PM','7094175','Alice-Cooper--Judas-Priest---Corrosion-of-Conformity-10-5-2025']],'','https://www.ticketnetwork.com');