//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Louisville Orchestra: Creators Fest','Whitney Hall at The Kentucky Center','Louisville, KY','Friday','5/9/2025','11:00 AM','6857557','Louisville-Orchestra--Creators-Fest-5-9-2025'],['Shred Fest: Obscura','Cabooze','Minneapolis, MN','Friday','5/9/2025','6:00 PM','6977116','Shred-Fest--Obscura-5-9-2025'],['Femme Fest IV','Showcase Lounge at Higher Ground','South Burlington, VT','Friday','5/9/2025','7:30 PM','7087153','Femme-Fest-IV-5-9-2025'],['Kentucky Elk & Outdoor Fest: Chase Matthews, The Cleverlys & Cody Powers','KYGUNCO','Bardstown, KY','Saturday','5/10/2025','9:00 AM','7108682','Kentucky-Elk---Outdoor-Fest--Chase-Matthews--The-Cleverlys---Cody-Powers-5-10-2025'],['Evansville Anime-Fest','DoubleTree by Hilton Evansville','Evansville, IN','Saturday','5/10/2025','10:00 AM','6742078','Evansville-Anime-Fest-5-10-2025'],['Celina Cajun Fest','Downtown Celina Festival Grounds','Celina, TX','Saturday','5/10/2025','2:00 PM','7102562','Celina-Cajun-Fest-5-10-2025'],['Kill Iconic Fest: The Fall of Troy, A Lot Like Birds, & Moondough','The Observatory - Santa Ana','Santa Ana, CA','Saturday','5/10/2025','3:00 PM','6888488','Kill-Iconic-Fest--The-Fall-of-Troy--A-Lot-Like-Birds----Moondough-5-10-2025'],['Louisville Orchestra: Creators Fest','Whitney Hall at The Kentucky Center','Louisville, KY','Saturday','5/10/2025','7:30 PM','6857556','Louisville-Orchestra--Creators-Fest-5-10-2025'],['BrownstoneJAZZ Fest Weekend Concert Series','BrownstoneJAZZ','Brooklyn, NY','Sunday','5/11/2025','4:00 PM','7079026','BrownstoneJAZZ-Fest-Weekend-Concert-Series-5-11-2025'],['Shred Fest: Obscura','Starlite Room','Edmonton, Canada','Monday','5/12/2025','5:30 PM','6976454','Shred-Fest--Obscura-5-12-2025']],'Fest','https://www.ticketnetwork.com');