//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Cirque Mechanics','Bass Concert Hall','Austin, TX','Tuesday','2/24/2026','7:00 PM','7217985','Cirque-Mechanics-2-24-2026'],['Harry Potter and the Prisoner of Azkaban In Concert','Bass Concert Hall','Austin, TX','Saturday','2/28/2026','1:00 PM','7034629','Harry-Potter-and-the-Prisoner-of-Azkaban-In-Concert-2-28-2026'],['Harry Potter and the Prisoner of Azkaban In Concert','Bass Concert Hall','Austin, TX','Saturday','2/28/2026','7:30 PM','7034630','Harry-Potter-and-the-Prisoner-of-Azkaban-In-Concert-2-28-2026'],['Alvin Ailey American Dance Theater','Bass Concert Hall','Austin, TX','Tuesday','3/3/2026','7:30 PM','7217984','Alvin-Ailey-American-Dance-Theater-3-3-2026'],['Michelle Buteau','Bass Concert Hall','Austin, TX','Friday','3/6/2026','7:30 PM','7068835','Michelle-Buteau-3-6-2026'],['UCA Orchestra: Brian Eads - Death Stranding: Strands of Harmony','Bass Concert Hall','Austin, TX','Saturday','3/7/2026','8:00 PM','7031993','UCA-Orchestra--Brian-Eads---Death-Stranding--Strands-of-Harmony-3-7-2026'],['The Great Gatsby - Theatrical Production','Bass Concert Hall','Austin, TX','Tuesday','3/10/2026','7:30 PM','7022143','The-Great-Gatsby---Theatrical-Production-3-10-2026'],['The Great Gatsby - Theatrical Production','Bass Concert Hall','Austin, TX','Wednesday','3/11/2026','7:30 PM','7022144','The-Great-Gatsby---Theatrical-Production-3-11-2026'],['The Great Gatsby - Theatrical Production','Bass Concert Hall','Austin, TX','Thursday','3/12/2026','7:30 PM','7022145','The-Great-Gatsby---Theatrical-Production-3-12-2026'],['The Great Gatsby - Theatrical Production','Bass Concert Hall','Austin, TX','Friday','3/13/2026','8:00 PM','7022146','The-Great-Gatsby---Theatrical-Production-3-13-2026']],'Bass Concert Hall Austin','http://www.ticketnetwork.com/en/search/?text=Bass%20Concert%20Hall%20Austin');