//
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([['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'],['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'],['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'],['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'],['NFL Preseason: Dallas Cowboys vs. New Orleans Saints','AT&T Stadium','Arlington, TX','Friday','8/28/2026','7:00 PM','7967193','NFL-Preseason--Dallas-Cowboys-vs--New-Orleans-Saints-8-28-2026'],['Premium Tailgate Party: New York Giants vs. Dallas Cowboys','Premium Tailgate Tent - NY','East Rutherford, NJ','Sunday','9/13/2026','TBD','7977510','Premium-Tailgate-Party--New-York-Giants-vs--Dallas-Cowboys-9-13-2026'],['PARKING: New York Giants vs. Dallas Cowboys','MetLife Stadium Parking Lots','East Rutherford, NJ','Sunday','9/13/2026','TBD','7954564','PARKING--New-York-Giants-vs--Dallas-Cowboys-9-13-2026'],['New York Giants vs. Dallas Cowboys','MetLife Stadium','East Rutherford, NJ','Sunday','9/13/2026','8:20 PM','7730258','New-York-Giants-vs--Dallas-Cowboys-9-13-2026'],['Dallas Cowboys Season Tickets (Includes Tickets To All Regular Season Home Games)','AT&T Stadium','Arlington, TX','Saturday','9/19/2026','TBD','7662934','Dallas-Cowboys-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-19-2026']],'Dallas Cowboys','https://www.ticketnetwork.com');