//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Sam Houston Bearkats vs. Houston Cougars','Don Sanders Stadium','Huntsville, TX','Tuesday','4/7/2026','6:00 PM','7601102','Sam-Houston-Bearkats-vs--Houston-Cougars-4-7-2026'],['Rice Owls vs. Texas A&M-Corpus Christi Islanders ','Reckling Park','Houston, TX','Tuesday','4/7/2026','6:35 PM','7646078','Rice-Owls-vs--Texas-A-M-Corpus-Christi-Islanders--4-7-2026'],['Powfu','White Oak Music Hall - Downstairs','Houston, TX','Tuesday','4/7/2026','7:00 PM','7675653','Powfu-4-7-2026'],['Yuuf','White Oak Music Hall - Upstairs','Houston, TX','Tuesday','4/7/2026','7:00 PM','7684493','Yuuf-4-7-2026'],['Hippie Sabotage','House Of Blues - Houston','Houston, TX','Tuesday','4/7/2026','7:00 PM','7707152','Hippie-Sabotage-4-7-2026'],['Blue Man Group','Jones Hall for the Performing Arts','Houston, TX','Tuesday','4/7/2026','7:30 PM','7217292','Blue-Man-Group-4-7-2026'],['Six The Musical','Sarofim Hall - Hobby Center','Houston, TX','Tuesday','4/7/2026','7:30 PM','6983974','Six-The-Musical-4-7-2026'],['Black Flag','Warehouse Live Midtown','Houston, TX','Wednesday','4/8/2026','7:00 PM','7625950','Black-Flag-4-8-2026'],['Rusowsky','White Oak Music Hall - Downstairs','Houston, TX','Wednesday','4/8/2026','7:00 PM','7600966','Rusowsky-4-8-2026'],['Ryan Davis and The Roadhouse Band','White Oak Music Hall - Upstairs','Houston, TX','Wednesday','4/8/2026','7:00 PM','7601136','Ryan-Davis-and-The-Roadhouse-Band-4-8-2026']],'Houston Tx','https://www.ticketnetwork.com');