//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['World Cup 26: Semi-Finals: W97 vs. W98 - Match 101','AT&T Stadium','Arlington, TX','Tuesday','7/14/2026','2:00 PM','6259550','World-Cup-26--Semi-Finals--W97-vs--W98---Match-101-7-14-2026'],['PARKING: NFL Preseason - Seattle Seahawks vs. Dallas Cowboys','Lumen Field Parking Lots','Seattle, WA','Saturday','8/15/2026','TBD','7967447','PARKING--NFL-Preseason---Seattle-Seahawks-vs--Dallas-Cowboys-8-15-2026'],['NFL Preseason: Seattle Seahawks vs. Dallas Cowboys','Lumen Field','Seattle, WA','Saturday','8/15/2026','5:00 PM','7967446','NFL-Preseason--Seattle-Seahawks-vs--Dallas-Cowboys-8-15-2026'],['BTS','AT&T Stadium','Arlington, TX','Saturday','8/15/2026','8:00 PM','7676866','BTS-8-15-2026'],['BTS','AT&T Stadium','Arlington, TX','Sunday','8/16/2026','8:00 PM','7676867','BTS-8-16-2026'],['PARKING: NFL Preseason - Arizona Cardinals vs. Dallas Cowboys','State Farm Stadium Parking Lots','Glendale, AZ','Saturday','8/22/2026','TBD','7967174','PARKING--NFL-Preseason---Arizona-Cardinals-vs--Dallas-Cowboys-8-22-2026'],['Zach Bryan, MJ Lenderman & Fey Fili','AT&T Stadium','Arlington, TX','Saturday','8/22/2026','7:00 PM','7583741','Zach-Bryan--MJ-Lenderman---Fey-Fili-8-22-2026'],['NFL Preseason: Arizona Cardinals vs. Dallas Cowboys','State Farm Stadium','Glendale, AZ','Saturday','8/22/2026','7:00 PM','7967172','NFL-Preseason--Arizona-Cardinals-vs--Dallas-Cowboys-8-22-2026'],['Spikes Under The Lights','AT&T Stadium','Arlington, TX','Thursday','8/27/2026','7:00 PM','7938565','Spikes-Under-The-Lights-8-27-2026'],['PARKING: NFL Preseason - Dallas Cowboys vs. New Orleans Saints','AT&T Stadium Parking Lots','Arlington, TX','Friday','8/28/2026','TBD','7967194','PARKING--NFL-Preseason---Dallas-Cowboys-vs--New-Orleans-Saints-8-28-2026']],'"Dallas Cowboys"','https://www.ticketnetwork.com');