//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Dinosaur Adventure (Multiple Dates and Times)','National Peanut Festival','Dothan, AL','Sunday','5/3/2026','TBD','7860921','Dinosaur-Adventure--Multiple-Dates-and-Times--5-3-2026'],['New Orleans Jazz And Heritage Festival: Weekend 2 - Sunday','New Orleans Fair Grounds','New Orleans, LA','Sunday','5/3/2026','11:00 AM','7141892','New-Orleans-Jazz-And-Heritage-Festival--Weekend-2---Sunday-5-3-2026'],['Kansas City Tattoo Arts Festival','Sheraton Kansas City Hotel at Crown Center','Kansas City, MO','Sunday','5/3/2026','11:00 AM','7491246','Kansas-City-Tattoo-Arts-Festival-5-3-2026'],['BeachLife Festival - Sunday','Redondo Beach','Redondo Beach, CA','Sunday','5/3/2026','11:30 AM','7421859','BeachLife-Festival---Sunday-5-3-2026'],['CORE Los Angeles - Sunday','Los Angeles State Historic Park','Los Angeles, CA','Sunday','5/3/2026','1:00 PM','7910566','CORE-Los-Angeles---Sunday-5-3-2026'],['Equity Arc Festival Concert','Capital One Hall','Tysons Corner, VA','Sunday','5/3/2026','2:00 PM','7727098','Equity-Arc-Festival-Concert-5-3-2026'],['Crush The Coast: Cradle of Filth & Suffocation - Sunday','House Of Rock - Corpus Christi','Corpus Christi, TX','Sunday','5/3/2026','5:00 PM','7613352','Crush-The-Coast--Cradle-of-Filth---Suffocation---Sunday-5-3-2026'],['Decibel Metal & Beer Festival','The Fillmore - Philadelphia','Philadelphia, PA','Sunday','5/3/2026','6:30 PM','7630122','Decibel-Metal---Beer-Festival-5-3-2026'],['Gwinnett Symphony Youth Orchestra - Festival Concert','Gas South Theater','Duluth, GA','Monday','5/4/2026','6:00 PM','7903261','Gwinnett-Symphony-Youth-Orchestra---Festival-Concert-5-4-2026'],['Netflix Is A Joke Festival: RUSHMORE Podcast Live: Larry David & Jerry Seinfeld','Saban Theatre','Beverly Hills, CA','Monday','5/4/2026','6:00 PM','7693458','Netflix-Is-A-Joke-Festival--RUSHMORE-Podcast-Live--Larry-David---Jerry-Seinfeld-5-4-2026']],'"Festival"','https://www.ticketnetwork.com');