//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Candlelight: Tribute to British Rock Legends','Fort Worth Botanic Garden','Fort Worth, TX','Sunday','6/28/2026','7:45 PM','7870668','Candlelight--Tribute-to-British-Rock-Legends-6-28-2026'],['Rock en Espanol 90s Legends','The Lowbrow Palace','El Paso, TX','Saturday','8/8/2026','8:00 PM','7979859','Rock-en-Espanol-90s-Legends-8-8-2026'],['The Liverpool Legends - Beatles Tribute','Hasskarl Auditorium','Brenham, TX','Saturday','8/29/2026','7:00 PM','7543880','The-Liverpool-Legends---Beatles-Tribute-8-29-2026'],['Candlelight: Long Live the Rock Legends','St. Rogers Depot','El Paso, TX','Thursday','9/10/2026','6:30 PM','7902761','Candlelight--Long-Live-the-Rock-Legends-9-10-2026'],['The Liverpool Legends - Beatles Tribute','Granbury Opera House','Granbury, TX','Friday','9/11/2026','7:30 PM','8078235','The-Liverpool-Legends---Beatles-Tribute-9-11-2026'],['The Liverpool Legends - Beatles Tribute','Granbury Opera House','Granbury, TX','Saturday','9/12/2026','7:30 PM','8078236','The-Liverpool-Legends---Beatles-Tribute-9-12-2026'],['Tianna Hall - A Tribute to The Lady Legends of Jazz','Main Street Crossing','Tomball, TX','Sunday','10/11/2026','5:00 PM','8073239','Tianna-Hall---A-Tribute-to-The-Lady-Legends-of-Jazz-10-11-2026'],['Dallas Symphony Orchestra: Rock Legends of the 60s and 70s','Meyerson Symphony Center','Dallas, TX','Friday','1/29/2027','7:30 PM','7930684','Dallas-Symphony-Orchestra--Rock-Legends-of-the-60s-and-70s-1-29-2027'],['Dallas Symphony Orchestra: Rock Legends of the 60s and 70s','Meyerson Symphony Center','Dallas, TX','Saturday','1/30/2027','7:30 PM','7930686','Dallas-Symphony-Orchestra--Rock-Legends-of-the-60s-and-70s-1-30-2027'],['Dallas Symphony Orchestra: Rock Legends of the 60s and 70s','Meyerson Symphony Center','Dallas, TX','Friday','5/21/2027','7:30 PM','7930685','Dallas-Symphony-Orchestra--Rock-Legends-of-the-60s-and-70s-5-21-2027']],'texas legends','http://www.ticketnetwork.com/en/search/?text=texas%20legends');