//
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([['Fair Grounds Live Racing','New Orleans Fair Grounds','New Orleans, LA','Thursday','3/5/2026','12:45 PM','7549023','Fair-Grounds-Live-Racing-3-5-2026'],['Florida Strawberry Festival: The Bellamy Brothers','Florida Strawberry Festival Grounds','Plant City, FL','Thursday','3/5/2026','3:30 PM','7571987','Florida-Strawberry-Festival--The-Bellamy-Brothers-3-5-2026'],['Punk & Ska Fest','Toads Place CT','New Haven, CT','Thursday','3/5/2026','6:00 PM','7751100','Punk---Ska-Fest-3-5-2026'],['Igloofest Quebec: Disclosure - Thursday','Place Jean-Beliveau At Centre Videotron','Quebec, Canada','Thursday','3/5/2026','7:00 PM','7589016','Igloofest-Quebec--Disclosure---Thursday-3-5-2026'],['Florida Strawberry Festival: Dierks Bentley','Florida Strawberry Festival Grounds','Plant City, FL','Thursday','3/5/2026','7:30 PM','7571988','Florida-Strawberry-Festival--Dierks-Bentley-3-5-2026'],['Flamenco Festival: Ballet Flamenco Sara Baras','MainStage At New York City Center','New York, NY','Thursday','3/5/2026','7:30 PM','7372375','Flamenco-Festival--Ballet-Flamenco-Sara-Baras-3-5-2026'],['Love Rocks NYC!','Beacon Theatre - NY','New York, NY','Thursday','3/5/2026','8:00 PM','7734208','Love-Rocks-NYC--3-5-2026'],['Arnold Sports Festival - 3 Day Pass','Greater Columbus','Columbus, OH','Friday','3/6/2026','TBD','7625834','Arnold-Sports-Festival---3-Day-Pass-3-6-2026'],['M3F Festival: Mau P & Peggy Gou - 2 Day Pass','Steele Indian School Park','Phoenix, AZ','Friday','3/6/2026','TBD','7538570','M3F-Festival--Mau-P---Peggy-Gou---2-Day-Pass-3-6-2026'],['DreamState Festival - 2 Day Pass ','Bill Graham Civic Auditorium','San Francisco, CA','Friday','3/6/2026','TBD','7669475','DreamState-Festival---2-Day-Pass--3-6-2026']],'"Festival"','https://www.ticketnetwork.com');