//
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([['5 O'Clock Somewhere Festival: Ella Langley, Old Dominion & Clint Black - 2 Day Pass','Waterfront Commons','West Palm Beach, FL','Friday','6/12/2026','TBD','7831035','5-O-Clock-Somewhere-Festival--Ella-Langley--Old-Dominion---Clint-Black---2-Day-Pass-6-12-2026'],['Lyrical Lemonade Summer Smash: Lil Uzi Vert, Skrillex & Playboi Carti - 3 Day Pass','SeatGeek Stadium','Bridgeview, IL','Friday','6/12/2026','TBD','7597374','Lyrical-Lemonade-Summer-Smash--Lil-Uzi-Vert--Skrillex---Playboi-Carti---3-Day-Pass-6-12-2026'],['RiseFest: Josiah Queen & Ben Fuller - 2 Day Pass','RiseFest Festival Grounds','Sheldon, IA','Friday','6/12/2026','TBD','7627920','RiseFest--Josiah-Queen---Ben-Fuller---2-Day-Pass-6-12-2026'],['Country Summer: Cole Swindell, Keith Urban & Koe Wetzel - 3 Day Pass','Sonoma County Fairgrounds','Santa Rosa, CA','Friday','6/12/2026','TBD','7880500','Country-Summer--Cole-Swindell--Keith-Urban---Koe-Wetzel---3-Day-Pass-6-12-2026'],['Reggae Rise Up Oregon: Rebelution, Dirty Heads & Iration - 3 Day Pass','Deschutes County Fairgrounds Expo Center','Redmond, OR','Friday','6/12/2026','TBD','7433781','Reggae-Rise-Up-Oregon--Rebelution--Dirty-Heads---Iration---3-Day-Pass-6-12-2026'],['FIFA Fan Festival Los Angeles','Los Angeles Memorial Coliseum','Los Angeles, CA','Friday','6/12/2026','11:00 AM','7902463','FIFA-Fan-Festival-Los-Angeles-6-12-2026'],['Gridlife Midwest Festival (Time: TBD) - Friday','GingerMan Raceway','South Haven, MI','Friday','6/12/2026','12:00 PM','7592464','Gridlife-Midwest-Festival--Time--TBD----Friday-6-12-2026'],['5 O'Clock Somewhere Festival: Ella Langley, Dylan Scott & Rodney Atkins - Friday Pass (Time: TBD)','Waterfront Commons','West Palm Beach, FL','Friday','6/12/2026','12:00 PM','7831037','5-O-Clock-Somewhere-Festival--Ella-Langley--Dylan-Scott---Rodney-Atkins---Friday-Pass--Time--TBD--6-12-2026'],['RiseFest - Friday','RiseFest Festival Grounds','Sheldon, IA','Friday','6/12/2026','12:00 PM','7630317','RiseFest---Friday-6-12-2026'],['Reggae Rise Up Oregon: Rebelution, Soja & Burning Spear - Friday','Deschutes County Fairgrounds Expo Center','Redmond, OR','Friday','6/12/2026','12:00 PM','7433778','Reggae-Rise-Up-Oregon--Rebelution--Soja---Burning-Spear---Friday-6-12-2026']],'"Festival"','https://www.ticketnetwork.com');