//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Houston Astros vs. Los Angeles Dodgers','Daikin Park','Houston, TX','Tuesday','5/5/2026','7:10 PM','7367652','Houston-Astros-vs--Los-Angeles-Dodgers-5-5-2026'],['Florence and The Machine','Toyota Center - TX','Houston, TX','Tuesday','5/5/2026','7:30 PM','7514157','Florence-and-The-Machine-5-5-2026'],['UADA & Mortiis','Warehouse Live Midtown','Houston, TX','Tuesday','5/5/2026','8:00 PM','7625952','UADA---Mortiis-5-5-2026'],['Houston Astros vs. Los Angeles Dodgers','Daikin Park','Houston, TX','Wednesday','5/6/2026','1:10 PM','7367653','Houston-Astros-vs--Los-Angeles-Dodgers-5-6-2026'],['Chaos and Carnage: Thy Art Is Murder, Carnifex & Bodysnatcher','House Of Blues - Houston','Houston, TX','Wednesday','5/6/2026','4:00 PM','7628585','Chaos-and-Carnage--Thy-Art-Is-Murder--Carnifex---Bodysnatcher-5-6-2026'],['Miles Minnick','Bronze Peacock At The House Of Blues - Houston ','Houston, TX','Wednesday','5/6/2026','7:00 PM','7706808','Miles-Minnick-5-6-2026'],['Brigitte Calls Me Baby','White Oak Music Hall - Upstairs','Houston, TX','Wednesday','5/6/2026','7:00 PM','7677619','Brigitte-Calls-Me-Baby-5-6-2026'],['Shaun Latham','Punch Line Comedy Club - Houston','Houston, TX','Wednesday','5/6/2026','7:30 PM','7735863','Shaun-Latham-5-6-2026'],['August Wilson's Fences','Hubbard Stage - Alley Theatre','Houston, TX','Wednesday','5/6/2026','7:30 PM','7485574','August-Wilson-s-Fences-5-6-2026'],['Houston Grand Opera: The Barber of Seville','Brown Theater at Wortham Center','Houston, TX','Wednesday','5/6/2026','7:30 PM','7053520','Houston-Grand-Opera--The-Barber-of-Seville-5-6-2026']],'Houston Tx','https://www.ticketnetwork.com');