//
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([['Drunk Pirates','Emerald Theatre - Houston','Houston, TX','Wednesday','7/15/2026','7:00 PM','8059837','Drunk-Pirates-7-15-2026'],['Comedy Allstars','Punch Line Comedy Club - Houston','Houston, TX','Wednesday','7/15/2026','7:30 PM','7988166','Comedy-Allstars-7-15-2026'],['Houston Dynamo FC vs. America de Cali','Shell Energy Stadium','Houston, TX','Wednesday','7/15/2026','7:30 PM','7915134','Houston-Dynamo-FC-vs--America-de-Cali-7-15-2026'],['Joseph And The Amazing Technicolor Dreamcoat','The George Theater','Houston, TX','Wednesday','7/15/2026','7:30 PM','7775409','Joseph-And-The-Amazing-Technicolor-Dreamcoat-7-15-2026'],['Moulin Rouge - The Musical','Sarofim Hall - Hobby Center','Houston, TX','Wednesday','7/15/2026','7:30 PM','7099998','Moulin-Rouge---The-Musical-7-15-2026'],['Qveen Herby','House Of Blues - Houston','Houston, TX','Thursday','7/16/2026','7:00 PM','7706854','Qveen-Herby-7-16-2026'],['Gunshine','Warehouse Live Midtown','Houston, TX','Thursday','7/16/2026','7:00 PM','7818005','Gunshine-7-16-2026'],['Drunk Pirates','Emerald Theatre - Houston','Houston, TX','Thursday','7/16/2026','7:00 PM','8059838','Drunk-Pirates-7-16-2026'],['Lelo','Bronze Peacock At The House Of Blues - Houston ','Houston, TX','Thursday','7/16/2026','7:00 PM','7947433','Lelo-7-16-2026'],['Dressed to Kill Comedy Show','Punch Line Comedy Club - Houston','Houston, TX','Thursday','7/16/2026','7:30 PM','8031539','Dressed-to-Kill-Comedy-Show-7-16-2026']],'Houston Tx','https://www.ticketnetwork.com');