//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Lana Del Rey','Wembley Stadium','London, United Kingdom','Thursday','7/3/2025','5:00 PM','6848289','Lana-Del-Rey-7-3-2025'],['Lana Del Rey','Wembley Stadium','London, United Kingdom','Friday','7/4/2025','5:00 PM','6855231','Lana-Del-Rey-7-4-2025'],['Oleksandr Usyk vs. Daniel Dubois','Wembley Stadium','London, United Kingdom','Saturday','7/19/2025','TBD','7123839','Oleksandr-Usyk-vs--Daniel-Dubois-7-19-2025'],['Women's Football Alliance Championship - Weekend Pass','Tom Benson Hall of Fame Stadium','Canton, OH','Friday','7/25/2025','TBD','7169054','Women-s-Football-Alliance-Championship---Weekend-Pass-7-25-2025'],['Seattle Seahawks Training Camp','Virginia Mason Athletic Center','Renton, WA','Friday','7/25/2025','1:00 PM','7210228','Seattle-Seahawks-Training-Camp-7-25-2025'],['Women's Football Alliance Championship - Day 1 (Division III & Division II Championship Game)','Tom Benson Hall of Fame Stadium','Canton, OH','Friday','7/25/2025','2:30 PM','7169052','Women-s-Football-Alliance-Championship---Day-1--Division-III---Division-II-Championship-Game--7-25-2025'],['Oasis','Wembley Stadium','London, United Kingdom','Friday','7/25/2025','5:00 PM','6672078','Oasis-7-25-2025'],['Minnesota Vikings Training Camp','Twin Cities Orthopedics Performance Center','Saint Paul, MN','Saturday','7/26/2025','12:00 PM','7221890','Minnesota-Vikings-Training-Camp-7-26-2025'],['Seattle Seahawks Training Camp','Virginia Mason Athletic Center','Renton, WA','Saturday','7/26/2025','1:00 PM','7210229','Seattle-Seahawks-Training-Camp-7-26-2025'],['Women's Football Alliance Championship - Day 2 (WFA Pro Championship Game & All-American Game)','Tom Benson Hall of Fame Stadium','Canton, OH','Saturday','7/26/2025','2:00 PM','7169053','Women-s-Football-Alliance-Championship---Day-2--WFA-Pro-Championship-Game---All-American-Game--7-26-2025']],'Nfl','https://www.ticketnetwork.com');