//
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-02A
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([['Kansas - The Band','Majestic Theatre - San Antonio','San Antonio, TX','Thursday','12/11/2025','7:30 PM','7225794','Kansas---The-Band-12-11-2025'],['Elida Reyna & Avante','Majestic Theatre - San Antonio','San Antonio, TX','Friday','12/12/2025','8:00 PM','7245788','Elida-Reyna---Avante-12-12-2025'],['Doc Watkins','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','12/13/2025','8:00 PM','7340522','Doc-Watkins-12-13-2025'],['Ezra Ray Hart','Majestic Theatre - San Antonio','San Antonio, TX','Sunday','12/14/2025','7:30 PM','7319833','Ezra-Ray-Hart-12-14-2025'],['Ralph Barbosa','Majestic Theatre - San Antonio','San Antonio, TX','Friday','12/19/2025','7:00 PM','7296433','Ralph-Barbosa-12-19-2025'],['Ralph Barbosa','Majestic Theatre - San Antonio','San Antonio, TX','Friday','12/19/2025','9:30 PM','7397422','Ralph-Barbosa-12-19-2025'],['Sarah Brightman','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','12/20/2025','8:00 PM','7141631','Sarah-Brightman-12-20-2025'],['Elf - The Musical','Majestic Theatre - San Antonio','San Antonio, TX','Tuesday','12/23/2025','7:30 PM','7042895','Elf---The-Musical-12-23-2025'],['Elf - The Musical','Majestic Theatre - San Antonio','San Antonio, TX','Wednesday','12/24/2025','2:00 PM','7042897','Elf---The-Musical-12-24-2025'],['Elf - The Musical','Majestic Theatre - San Antonio','San Antonio, TX','Friday','12/26/2025','2:00 PM','7042899','Elf---The-Musical-12-26-2025']],'Majestic Theatre San Antonio','http://www.ticketnetwork.com/en/search/?text=Majestic%20Theatre%20San%20Antonio');