//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.CreateTable([['The Lumineers','Spark Arena','Auckland, New Zealand','Tuesday','1/6/2026','7:00 PM','7363287','The-Lumineers-1-6-2026'],['Okeechobee Music & Arts Festival: Cage The Elephant, GRiZ, Fisher, & The Lumineers - 4 Day Pass','Sunshine Grove - FL','Okeechobee, FL','Thursday','3/19/2026','TBD','7097768','Okeechobee-Music---Arts-Festival--Cage-The-Elephant--GRiZ--Fisher----The-Lumineers---4-Day-Pass-3-19-2026'],['The Lumineers','Legacy Arena at The BJCC','Birmingham, AL','Wednesday','3/25/2026','7:30 PM','7594455','The-Lumineers-3-25-2026'],['The Lumineers','Smoothie King Center','New Orleans, LA','Thursday','3/26/2026','7:30 PM','7594457','The-Lumineers-3-26-2026'],['Tecate Pal Norte (Time: TBD): The Killers, Zoe & The Lumineers - Sunday','Fundidora Park','Monterrey, Mexico','Sunday','3/29/2026','2:00 PM','7557614','Tecate-Pal-Norte--Time--TBD---The-Killers--Zoe---The-Lumineers---Sunday-3-29-2026'],['Railbird Festival - 2 Day Pass','The Red Mile','Lexington, KY','Saturday','6/6/2026','TBD','7509701','Railbird-Festival---2-Day-Pass-6-6-2026'],['Railbird Festival: The Lumineers, Caamp & Mt. Joy (Time: TBD) - Saturday','The Red Mile','Lexington, KY','Saturday','6/6/2026','12:00 PM','7509702','Railbird-Festival--The-Lumineers--Caamp---Mt--Joy--Time--TBD----Saturday-6-6-2026'],['Zootown Festival: The Chicks, The Lumineers, Rainbow Kitten Surprise & Tedeschi Trucks Band - 2 Day Pass','Missoula County Fairgrounds','Missoula, MT','Friday','6/19/2026','TBD','7579348','Zootown-Festival--The-Chicks--The-Lumineers--Rainbow-Kitten-Surprise---Tedeschi-Trucks-Band---2-Day-Pass-6-19-2026'],['Zootown Festival: The Lumineers, Rainbow Kitten Surprise, The Head and The Heart & Built To Spill - Friday (Time: TBD)','Missoula County Fairgrounds','Missoula, MT','Friday','6/19/2026','12:00 PM','7579350','Zootown-Festival--The-Lumineers--Rainbow-Kitten-Surprise--The-Head-and-The-Heart---Built-To-Spill---Friday--Time--TBD--6-19-2026'],['Rock The Park: The Lumineers, Dylan Gossett, & Michael Marcagi','Harris Park - Ontario','London, Canada','Wednesday','7/15/2026','5:00 PM','7576295','Rock-The-Park--The-Lumineers--Dylan-Gossett----Michael-Marcagi-7-15-2026']],'The Lumineers','https://www.ticketnetwork.com/ticket/The-Lumineers-events.aspx');