//
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([['Cooper Alan','Ponte Vedra Concert Hall','Ponte Vedra Beach, FL','Saturday','5/30/2026','7:30 PM','7746074','Cooper-Alan-5-30-2026'],['Cooper Alan','The Plaza Live','Orlando, FL','Sunday','5/31/2026','8:00 PM','7746073','Cooper-Alan-5-31-2026'],['Cooper Alan','Hampton Beach Casino Ballroom','Hampton, NH','Thursday','6/11/2026','8:00 PM','7706427','Cooper-Alan-6-11-2026'],['Cooper Alan','Cape Cod Melody Tent','Hyannis, MA','Friday','6/12/2026','8:00 PM','7683400','Cooper-Alan-6-12-2026'],['Cooper Alan','South Shore Music Circus','Cohasset, MA','Saturday','6/13/2026','8:00 PM','7683774','Cooper-Alan-6-13-2026'],['Cooper Alan','Bottle & Cork','Dewey Beach, DE','Sunday','6/14/2026','7:00 PM','7828136','Cooper-Alan-6-14-2026'],['Tailgate N Tallboys Music Festival: Zach Top, Treaty Oak Revival & Jessie Murph - 4 Day Pass','Tailgate N' Tallboys - Normal','Normal, IL','Thursday','6/18/2026','TBD','7503974','Tailgate-N-Tallboys-Music-Festival--Zach-Top--Treaty-Oak-Revival---Jessie-Murph---4-Day-Pass-6-18-2026'],['Cooper Alan','Warner Vineyards','Paw Paw, MI','Friday','6/19/2026','7:30 PM','7896354','Cooper-Alan-6-19-2026'],['Tailgate N Tallboys Music Festival: Jessie Murph, BigxThaPlug & Cameron Whitcomb - Saturday','Tailgate N' Tallboys - Normal','Normal, IL','Saturday','6/20/2026','12:00 PM','7537495','Tailgate-N-Tallboys-Music-Festival--Jessie-Murph--BigxThaPlug---Cameron-Whitcomb---Saturday-6-20-2026'],['Outskirts Music Festival: Jelly Roll & Third Eye Blind','SaskTel Centre Festival Grounds','Saskatoon, Canada','Friday','6/26/2026','2:30 PM','7611043','Outskirts-Music-Festival--Jelly-Roll---Third-Eye-Blind-6-26-2026']],'Cooper Alan','https://www.ticketnetwork.com');