//
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([['ACL Fest Nights: Yoke Lore x Vincent Lima','Scoot Inn','Austin, TX','Thursday','10/9/2025','5:00 PM','7353362','ACL-Fest-Nights--Yoke-Lore-x-Vincent-Lima-10-9-2025'],['MicroMania Midget Wrestling','Come and Take It Live','Austin, TX','Thursday','10/9/2025','6:00 PM','7398056','MicroMania-Midget-Wrestling-10-9-2025'],['Cirque du Soleil - Ovo','Moody Center ATX','Austin, TX','Thursday','10/9/2025','7:00 PM','7057313','Cirque-du-Soleil---Ovo-10-9-2025'],['ACL Fest Nights: MJ Lenderman and the Wind','Stubbs Waller Creek Amphitheater','Austin, TX','Thursday','10/9/2025','7:00 PM','7353360','ACL-Fest-Nights--MJ-Lenderman-and-the-Wind-10-9-2025'],['Elizabeth Berkley With A Screening of Showgirls','Paramount Theatre - Austin, TX','Austin, TX','Thursday','10/9/2025','7:00 PM','7361420','Elizabeth-Berkley-With-A-Screening-of-Showgirls-10-9-2025'],['Beach Too Sandy, Water Too Wet Podcast','Cap City Comedy Club','Austin, TX','Thursday','10/9/2025','7:15 PM','7200668','Beach-Too-Sandy--Water-Too-Wet-Podcast-10-9-2025'],['Wyatt Weaver Band','Riverbend Church','Austin, TX','Thursday','10/9/2025','7:30 PM','7464969','Wyatt-Weaver-Band-10-9-2025'],['ACL Fest Nights: Joey Valence & Brae','Empire Garage','Austin, TX','Thursday','10/9/2025','8:00 PM','7353413','ACL-Fest-Nights--Joey-Valence---Brae-10-9-2025'],['Tucker Wetmore','Austin County Fair','Bellville, TX','Thursday','10/9/2025','8:00 PM','7360211','Tucker-Wetmore-10-9-2025'],['Rocky Horror Picture Show & Patricia Quinn','Dell Hall at Long Center For The Performing Arts','Austin, TX','Thursday','10/9/2025','8:00 PM','7113378','Rocky-Horror-Picture-Show---Patricia-Quinn-10-9-2025']],'Austin Tx','https://www.ticketnetwork.com');