//
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([['Jurassic Quest (Multiple Dates and Times)','Monterey Fairgrounds','Monterey, CA','Sunday','2/22/2026','TBD','7625545','Jurassic-Quest--Multiple-Dates-and-Times--2-22-2026'],['Innings Festival: Blink-182, Sublime & Public Enemy - Sunday','Tempe Beach Park','Tempe, AZ','Sunday','2/22/2026','12:00 PM','7398397','Innings-Festival--Blink-182--Sublime---Public-Enemy---Sunday-2-22-2026'],['6th Annual Strawberry Festival','The Berry Farms - Miami','Miami, FL','Monday','2/23/2026','9:00 AM','7751493','6th-Annual-Strawberry-Festival-2-23-2026'],['6th Annual Strawberry Festival','The Berry Farms - Miami','Miami, FL','Tuesday','2/24/2026','9:00 AM','7751497','6th-Annual-Strawberry-Festival-2-24-2026'],['K-POP Warriors','Bush Convention Center','Midland, TX','Tuesday','2/24/2026','4:30 PM','7730175','K-POP-Warriors-2-24-2026'],['Festival Orchestra: Rachmaninoff & Brahms','La Casa de Cristo Lutheran Church','Scottsdale, AZ','Tuesday','2/24/2026','7:30 PM','7397803','Festival-Orchestra--Rachmaninoff---Brahms-2-24-2026'],['6th Annual Strawberry Festival','The Berry Farms - Miami','Miami, FL','Wednesday','2/25/2026','9:00 AM','7751498','6th-Annual-Strawberry-Festival-2-25-2026'],['Venardos Circus','Crown Festival Park','Sugar Land, TX','Wednesday','2/25/2026','7:00 PM','7641922','Venardos-Circus-2-25-2026'],['Fort Worth Music Festival: Larry Joe Taylor, Josh Abbott Band, Wade Bowen & Terri Hendrix - 4 Day Pass','Tannahill's Tavern and Music Hall','Fort Worth, TX','Thursday','2/26/2026','TBD','7567615','Fort-Worth-Music-Festival--Larry-Joe-Taylor--Josh-Abbott-Band--Wade-Bowen---Terri-Hendrix---4-Day-Pass-2-26-2026'],['6th Annual Strawberry Festival','The Berry Farms - Miami','Miami, FL','Thursday','2/26/2026','9:00 AM','7751499','6th-Annual-Strawberry-Festival-2-26-2026']],'"Festival"','https://www.ticketnetwork.com');