//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Wal-Knut Fest','Toads Place CT','New Haven, CT','Thursday','9/17/2026','6:30 PM','8234962','Wal-Knut-Fest-9-17-2026'],['Riot Fest Late Night: Sugar','Metro Chicago','Chicago, IL','Thursday','9/17/2026','7:00 PM','8207690','Riot-Fest-Late-Night--Sugar-9-17-2026'],['Riot Fest Late Night: Black Flag','Reggie's Rock Club','Chicago, IL','Thursday','9/17/2026','7:00 PM','8207691','Riot-Fest-Late-Night--Black-Flag-9-17-2026'],['Riot Fest: Twenty One Pilots, Tool & Pierce The Veil - 3 Day Pass','Douglass Park','Chicago, IL','Friday','9/18/2026','TBD','7432169','Riot-Fest--Twenty-One-Pilots--Tool---Pierce-The-Veil---3-Day-Pass-9-18-2026'],['iHeartRadio Music Festival: BTS, Cardi B, Snoop Dogg & Muse - 2 Day Pass','T-Mobile Arena','Las Vegas, NV','Friday','9/18/2026','TBD','7709408','iHeartRadio-Music-Festival--BTS--Cardi-B--Snoop-Dogg---Muse---2-Day-Pass-9-18-2026'],['Riot Fest: Twenty One Pilots, Iggy Pop & Rise Against - Friday','Douglass Park','Chicago, IL','Friday','9/18/2026','11:00 AM','7432170','Riot-Fest--Twenty-One-Pilots--Iggy-Pop---Rise-Against---Friday-9-18-2026'],['Hot Girl Summer Tribute Fest','Garden Amphitheatre','Garden Grove, CA','Friday','9/18/2026','5:00 PM','8217029','Hot-Girl-Summer-Tribute-Fest-9-18-2026'],['iHeartRadio Music Festival: BTS, Cardi B, Goo Goo Dolls & Kenny Chesney - Friday','T-Mobile Arena','Las Vegas, NV','Friday','9/18/2026','7:30 PM','7703590','iHeartRadio-Music-Festival--BTS--Cardi-B--Goo-Goo-Dolls---Kenny-Chesney---Friday-9-18-2026'],['Chicago Story Fest','Historic Main Stage at Athenaeum Center - IL','Chicago, IL','Friday','9/18/2026','8:00 PM','8157492','Chicago-Story-Fest-9-18-2026'],['Riot Fest Late Night: Yard Act','Cobra Lounge','Chicago, IL','Friday','9/18/2026','10:00 PM','8207692','Riot-Fest-Late-Night--Yard-Act-9-18-2026']],'Fest','https://www.ticketnetwork.com');