//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Mind's Eye & Hot Flash Heat Wave','White Oak Music Hall - Upstairs','Houston, TX','Wednesday','10/22/2025','6:30 PM','7240408','Mind-s-Eye---Hot-Flash-Heat-Wave-10-22-2025'],['Houston Cougars Women's Volleyball vs. UCF Knights','Fertitta Center','Houston, TX','Wednesday','10/22/2025','7:00 PM','7384334','Houston-Cougars-Women-s-Volleyball-vs--UCF-Knights-10-22-2025'],['Adrien Nunez','Bronze Peacock At The House Of Blues - Houston ','Houston, TX','Wednesday','10/22/2025','7:00 PM','7233770','Adrien-Nunez-10-22-2025'],['The 25th Annual Putnam County Spelling Bee','Sarofim Hall - Hobby Center','Houston, TX','Wednesday','10/22/2025','7:30 PM','7119025','The-25th-Annual-Putnam-County-Spelling-Bee-10-22-2025'],['Drunk Dracula','Emerald Theatre - Houston','Houston, TX','Wednesday','10/22/2025','7:30 PM','7412925','Drunk-Dracula-10-22-2025'],['Comedy Allstars','Punch Line Comedy Club - Houston','Houston, TX','Wednesday','10/22/2025','7:30 PM','7420498','Comedy-Allstars-10-22-2025'],['Red Shahan','White Oak Music Hall - Upstairs','Houston, TX','Thursday','10/23/2025','7:00 PM','7392916','Red-Shahan-10-23-2025'],['Nation of Language','White Oak Music Hall - Downstairs','Houston, TX','Thursday','10/23/2025','7:00 PM','7156138','Nation-of-Language-10-23-2025'],['Anella','Bronze Peacock At The House Of Blues - Houston ','Houston, TX','Thursday','10/23/2025','7:00 PM','7274357','Anella-10-23-2025'],['Josh Gates','Cullen Performance Hall','Houston, TX','Thursday','10/23/2025','7:30 PM','7031973','Josh-Gates-10-23-2025']],'Houston Tx','https://www.ticketnetwork.com');