//
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([['Cincinnati Tattoo Arts Festival','Duke Energy Convention Center','Cincinnati, OH','Friday','5/8/2026','TBD','7491247','Cincinnati-Tattoo-Arts-Festival-5-8-2026'],['Gridlife Special Stage & Formula Drift - Friday','Michelin Raceway Road Atlanta','Braselton, GA','Friday','5/8/2026','TBD','7642259','Gridlife-Special-Stage---Formula-Drift---Friday-5-8-2026'],['Country Thunder Florida: Gavin Adcock, Zach Top & Kane Brown - 3 Day Pass','Coachman Park','Clearwater, FL','Friday','5/8/2026','TBD','7632660','Country-Thunder-Florida--Gavin-Adcock--Zach-Top---Kane-Brown---3-Day-Pass-5-8-2026'],['Rolling Loud Festival - 3 Day Pass','Camping World Stadium','Orlando, FL','Friday','5/8/2026','TBD','7669387','Rolling-Loud-Festival---3-Day-Pass-5-8-2026'],['Camp Fimfo Concert Series: Shane Smith and The Saints & Bryan Martin - 2 Day Pass','Camp Fimfo Waco','Waco, TX','Friday','5/8/2026','TBD','7920865','Camp-Fimfo-Concert-Series--Shane-Smith-and-The-Saints---Bryan-Martin---2-Day-Pass-5-8-2026'],['Austin Psych Fest: The Flaming Lips, The Black Angels, & Thee Sacred Souls - 3 Day Pass','The Far Out Lounge & Stage','Austin, TX','Friday','5/8/2026','TBD','7723852','Austin-Psych-Fest--The-Flaming-Lips--The-Black-Angels----Thee-Sacred-Souls---3-Day-Pass-5-8-2026'],['Penticton Kiwanis Music Festival Highlights Gala','Cleland Community Theatre','Penticton, Canada','Friday','5/8/2026','6:30 PM','7872586','Penticton-Kiwanis-Music-Festival-Highlights-Gala-5-8-2026'],['Netflix Is A Joke Festival: Tonight's Conversation with Beauty In Black','The Wiltern','Los Angeles, CA','Friday','5/8/2026','7:00 PM','7939316','Netflix-Is-A-Joke-Festival--Tonight-s-Conversation-with-Beauty-In-Black-5-8-2026'],['Netflix Is A Joke Festival: Dave Chappelle','Hollywood Palladium','Los Angeles, CA','Friday','5/8/2026','7:00 PM','7916834','Netflix-Is-A-Joke-Festival--Dave-Chappelle-5-8-2026'],['Netflix Is A Joke Festival: Justin Martindale','The Crow','Santa Monica, CA','Friday','5/8/2026','7:00 PM','7940612','Netflix-Is-A-Joke-Festival--Justin-Martindale-5-8-2026']],'"Festival"','https://www.ticketnetwork.com');