//
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-03A
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([['Marcello Hernandez','Majestic Theatre - San Antonio','San Antonio, TX','Friday','8/22/2025','7:30 PM','7235835','Marcello-Hernandez-8-22-2025'],['Marcello Hernandez','Majestic Theatre - San Antonio','San Antonio, TX','Friday','8/22/2025','10:00 PM','7244921','Marcello-Hernandez-8-22-2025'],['Kevin Kaarl','Majestic Theatre - San Antonio','San Antonio, TX','Thursday','8/28/2025','7:30 PM','7013149','Kevin-Kaarl-8-28-2025'],['Brincos Dieras','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','8/30/2025','8:00 PM','7087610','Brincos-Dieras-8-30-2025'],['The Witcher in Concert','Majestic Theatre - San Antonio','San Antonio, TX','Friday','9/5/2025','7:00 PM','7180425','The-Witcher-in-Concert-9-5-2025'],['La Arrolladora Banda El Limon','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','9/6/2025','8:00 PM','7144800','La-Arrolladora-Banda-El-Limon-9-6-2025'],['Jeff Goldblum and The Mildred Snitzer Orchestra','Majestic Theatre - San Antonio','San Antonio, TX','Thursday','9/11/2025','7:30 PM','7182247','Jeff-Goldblum-and-The-Mildred-Snitzer-Orchestra-9-11-2025'],['Louis C.K.','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','9/13/2025','7:30 PM','7011043','Louis-C-K--9-13-2025'],['Rupaul's Drag Race','Majestic Theatre - San Antonio','San Antonio, TX','Wednesday','9/17/2025','7:30 PM','7046424','Rupaul-s-Drag-Race-9-17-2025'],['Not Dead Yet! John Cleese and The Holy Grail at 50','Majestic Theatre - San Antonio','San Antonio, TX','Thursday','9/18/2025','7:30 PM','7046133','Not-Dead-Yet--John-Cleese-and-The-Holy-Grail-at-50-9-18-2025']],'Majestic Theatre San Antonio','http://www.ticketnetwork.com/en/search/?text=Majestic%20Theatre%20San%20Antonio');