//
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([['Houston Livestock Show And Rodeo: Megan Moroney','NRG Stadium','Houston, TX','Tuesday','3/10/2026','6:45 PM','7089321','Houston-Livestock-Show-And-Rodeo--Megan-Moroney-3-10-2026'],['Houston Livestock Show And Rodeo: Creed','NRG Stadium','Houston, TX','Wednesday','3/11/2026','6:45 PM','7089322','Houston-Livestock-Show-And-Rodeo--Creed-3-11-2026'],['Houston Livestock Show And Rodeo: Chris Stapleton','NRG Stadium','Houston, TX','Thursday','3/12/2026','6:45 PM','7089323','Houston-Livestock-Show-And-Rodeo--Chris-Stapleton-3-12-2026'],['Houston Livestock Show And Rodeo: Shaboozey','NRG Stadium','Houston, TX','Friday','3/13/2026','6:45 PM','7089324','Houston-Livestock-Show-And-Rodeo--Shaboozey-3-13-2026'],['Houston Livestock Show And Rodeo: Kelly Clarkson','NRG Stadium','Houston, TX','Saturday','3/14/2026','2:45 PM','7089325','Houston-Livestock-Show-And-Rodeo--Kelly-Clarkson-3-14-2026'],['Houston Livestock Show And Rodeo: Pepe Aguilar','NRG Stadium','Houston, TX','Sunday','3/15/2026','2:45 PM','7089326','Houston-Livestock-Show-And-Rodeo--Pepe-Aguilar-3-15-2026'],['Houston Livestock Show And Rodeo: Cross Canadian Ragweed','NRG Stadium','Houston, TX','Monday','3/16/2026','6:45 PM','7089327','Houston-Livestock-Show-And-Rodeo--Cross-Canadian-Ragweed-3-16-2026'],['Houston Livestock Show And Rodeo: The Red Clay Strays','NRG Stadium','Houston, TX','Tuesday','3/17/2026','6:45 PM','7089328','Houston-Livestock-Show-And-Rodeo--The-Red-Clay-Strays-3-17-2026'],['Houston Livestock Show And Rodeo: Koe Wetzel','NRG Stadium','Houston, TX','Wednesday','3/18/2026','6:45 PM','7089329','Houston-Livestock-Show-And-Rodeo--Koe-Wetzel-3-18-2026'],['Houston Livestock Show And Rodeo: Lainey Wilson','NRG Stadium','Houston, TX','Thursday','3/19/2026','6:45 PM','7089330','Houston-Livestock-Show-And-Rodeo--Lainey-Wilson-3-19-2026'],['Houston Livestock Show And Rodeo: Parker McCollum','NRG Stadium','Houston, TX','Friday','3/20/2026','6:45 PM','7089331','Houston-Livestock-Show-And-Rodeo--Parker-McCollum-3-20-2026'],['Houston Livestock Show And Rodeo: Tim McGraw','NRG Stadium','Houston, TX','Saturday','3/21/2026','2:45 PM','7089332','Houston-Livestock-Show-And-Rodeo--Tim-McGraw-3-21-2026'],['Houston Livestock Show And Rodeo: Cody Johnson, Jon Pardi & Randy Houser - Concert Only','NRG Stadium','Houston, TX','Sunday','3/22/2026','6:30 PM','7089333','Houston-Livestock-Show-And-Rodeo--Cody-Johnson--Jon-Pardi---Randy-Houser---Concert-Only-3-22-2026']],'rodeo','https://www.ticketnetwork.com');