//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Friday','12/5/2025','8:00 PM','7270671','Zac-Brown-Band--Love---Fear-12-5-2025'],['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Saturday','12/6/2025','8:00 PM','7270672','Zac-Brown-Band--Love---Fear-12-6-2025'],['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Friday','12/12/2025','8:00 PM','7270673','Zac-Brown-Band--Love---Fear-12-12-2025'],['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Saturday','12/13/2025','8:00 PM','7270674','Zac-Brown-Band--Love---Fear-12-13-2025'],['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Friday','1/9/2026','8:00 PM','7286671','Zac-Brown-Band--Love---Fear-1-9-2026'],['Uncaged - A Tribute to Zac Brown','State Theatre - VA','Falls Church, VA','Friday','1/9/2026','8:30 PM','7494706','Uncaged---A-Tribute-to-Zac-Brown-1-9-2026'],['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Saturday','1/10/2026','8:00 PM','7286672','Zac-Brown-Band--Love---Fear-1-10-2026'],['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Friday','1/16/2026','8:00 PM','7462303','Zac-Brown-Band--Love---Fear-1-16-2026'],['Zac Brown Band: Love & Fear','Sphere','Las Vegas, NV','Saturday','1/17/2026','8:00 PM','7462304','Zac-Brown-Band--Love---Fear-1-17-2026'],['Jimmy Kenny Band - Tribute to Jimmy Buffett, Kenny Chesney & The Zac Brown Band','Blue Ocean Music Hall','Salisbury, MA','Saturday','4/25/2026','8:00 PM','7186190','Jimmy-Kenny-Band---Tribute-to-Jimmy-Buffett--Kenny-Chesney---The-Zac-Brown-Band-4-25-2026']],'Zac Brown Band','https://www.ticketnetwork.com');