//
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([['Telluride Comedy Festival','The Sheridan Opera House','Telluride, CO','Thursday','2/12/2026','8:00 PM','7679379','Telluride-Comedy-Festival-2-12-2026'],['San Diego Tattoo Arts Festival','Del Mar Fairgrounds','Del Mar, CA','Friday','2/13/2026','TBD','7491220','San-Diego-Tattoo-Arts-Festival-2-13-2026'],['Fair Grounds Live Racing','New Orleans Fair Grounds','New Orleans, LA','Friday','2/13/2026','12:45 PM','7549041','Fair-Grounds-Live-Racing-2-13-2026'],['Dream Asia Food Festival - Friday','Downtown Las Vegas Events Center','Las Vegas, NV','Friday','2/13/2026','4:00 PM','7648878','Dream-Asia-Food-Festival---Friday-2-13-2026'],['Beer, Bourbon and BBQ Festival','Curtis Hixon Waterfront Park','Tampa, FL','Friday','2/13/2026','6:00 PM','7428693','Beer--Bourbon-and-BBQ-Festival-2-13-2026'],['Lovesick Fest: Strings and Heart, Bodie, ISLY, Gracie Binion & Hopeful','Oceans Church - Irvine','Irvine, CA','Friday','2/13/2026','6:00 PM','7638865','Lovesick-Fest--Strings-and-Heart--Bodie--ISLY--Gracie-Binion---Hopeful-2-13-2026'],['Amplify New England: Gemello','Worcester Palladium - Upstairs','Worcester, MA','Friday','2/13/2026','6:30 PM','7699320','Amplify-New-England--Gemello-2-13-2026'],['Igloofest Gatineau: Kaskade','Place des Festivals Zibi','Gatineau, Canada','Friday','2/13/2026','7:00 PM','7599607','Igloofest-Gatineau--Kaskade-2-13-2026'],['Fly Fishing Film Festival','Thunder Bay Community Auditorium','Thunder Bay, Canada','Friday','2/13/2026','7:00 PM','7619293','Fly-Fishing-Film-Festival-2-13-2026'],['Skank in the Snow Festival: The Boy Detective, Capulet & Great Planes','Magic Bag','Ferndale, MI','Friday','2/13/2026','7:00 PM','7677610','Skank-in-the-Snow-Festival--The-Boy-Detective--Capulet---Great-Planes-2-13-2026']],'"Festival"','https://www.ticketnetwork.com');