//
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([['String Cheese Incident','ACL Live At The Moody Theater','Austin, TX','Friday','5/29/2026','8:00 PM','7732524','String-Cheese-Incident-5-29-2026'],['Pat Green','ACL Live At The Moody Theater','Austin, TX','Saturday','5/30/2026','8:00 PM','7708683','Pat-Green-5-30-2026'],['Belle and Sebastian - 2 Day Pass','ACL Live At The Moody Theater','Austin, TX','Monday','6/1/2026','TBD','7354471','Belle-and-Sebastian---2-Day-Pass-6-1-2026'],['Belle and Sebastian','ACL Live At The Moody Theater','Austin, TX','Monday','6/1/2026','8:00 PM','7354469','Belle-and-Sebastian-6-1-2026'],['Belle and Sebastian','ACL Live At The Moody Theater','Austin, TX','Tuesday','6/2/2026','8:00 PM','7354470','Belle-and-Sebastian-6-2-2026'],['Night Ranger','ACL Live At The Moody Theater','Austin, TX','Saturday','6/6/2026','8:00 PM','7885385','Night-Ranger-6-6-2026'],['The Kevin Langue Show Live','ACL Live At The Moody Theater','Austin, TX','Sunday','6/14/2026','7:00 PM','7773580','The-Kevin-Langue-Show-Live-6-14-2026'],['Audrey Hobert','ACL Live At The Moody Theater','Austin, TX','Wednesday','6/17/2026','8:00 PM','7689151','Audrey-Hobert-6-17-2026'],['Claypool Gold: Primus, Les Claypool's Frog Brigade & The Claypool Lennon Delirium','ACL Live At The Moody Theater','Austin, TX','Tuesday','6/23/2026','8:00 PM','7690487','Claypool-Gold--Primus--Les-Claypool-s-Frog-Brigade---The-Claypool-Lennon-Delirium-6-23-2026'],['You Should Know Podcast','ACL Live At The Moody Theater','Austin, TX','Thursday','6/25/2026','8:00 PM','7840623','You-Should-Know-Podcast-6-25-2026']],'"Austin City Limits"','https://www.ticketnetwork.com');