//
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([['SatchVai Band: Joe Satriani & Steve Vai & Animals As Leaders','ACL Live At The Moody Theater','Austin, TX','Saturday','4/18/2026','7:30 PM','7616163','SatchVai-Band--Joe-Satriani---Steve-Vai---Animals-As-Leaders-4-18-2026'],['Maddox Batson','ACL Live At The Moody Theater','Austin, TX','Wednesday','4/22/2026','8:00 PM','7552578','Maddox-Batson-4-22-2026'],['Jelly Roll','ACL Live At The Moody Theater','Austin, TX','Thursday','4/23/2026','9:00 PM','7792804','Jelly-Roll-4-23-2026'],['Jack Ingram and Friends Concert','ACL Live At The Moody Theater','Austin, TX','Friday','4/24/2026','8:00 PM','7734092','Jack-Ingram-and-Friends-Concert-4-24-2026'],['STS9 - Sound Tribe Sector 9','ACL Live At The Moody Theater','Austin, TX','Saturday','4/25/2026','8:00 PM','7634075','STS9---Sound-Tribe-Sector-9-4-25-2026'],['Melissa Etheridge','ACL Live At The Moody Theater','Austin, TX','Sunday','4/26/2026','8:00 PM','7509810','Melissa-Etheridge-4-26-2026'],['Ashnikko','ACL Live At The Moody Theater','Austin, TX','Tuesday','4/28/2026','8:00 PM','7412063','Ashnikko-4-28-2026'],['David Lee Roth','ACL Live At The Moody Theater','Austin, TX','Wednesday','4/29/2026','8:00 PM','7662932','David-Lee-Roth-4-29-2026'],['Maren Morris','ACL Live At The Moody Theater','Austin, TX','Thursday','4/30/2026','7:30 PM','7542402','Maren-Morris-4-30-2026'],['Joe Russo's Almost Dead','ACL Live At The Moody Theater','Austin, TX','Friday','5/1/2026','8:00 PM','7425706','Joe-Russo-s-Almost-Dead-5-1-2026']],'Austin City Limits','https://www.ticketnetwork.com');