//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['My Chemical Romance','Wembley Stadium','London, United Kingdom','Saturday','7/11/2026','5:00 PM','7321613','My-Chemical-Romance-7-11-2026'],['Bruno Mars, Victoria Monet & DJ Pee.Wee','Wembley Stadium','London, United Kingdom','Saturday','7/18/2026','5:00 PM','7668656','Bruno-Mars--Victoria-Monet---DJ-Pee-Wee-7-18-2026'],['Bruno Mars, Victoria Monet & DJ Pee.Wee','Wembley Stadium','London, United Kingdom','Sunday','7/19/2026','4:30 PM','7668657','Bruno-Mars--Victoria-Monet---DJ-Pee-Wee-7-19-2026'],['Bruno Mars','Wembley Stadium','London, United Kingdom','Wednesday','7/22/2026','5:00 PM','7678569','Bruno-Mars-7-22-2026'],['Bruno Mars','Wembley Stadium','London, United Kingdom','Friday','7/24/2026','5:00 PM','7678656','Bruno-Mars-7-24-2026'],['Seattle Seahawks Training Camp','Virginia Mason Athletic Center','Renton, WA','Saturday','7/25/2026','1:00 PM','8044046','Seattle-Seahawks-Training-Camp-7-25-2026'],['Bruno Mars','Wembley Stadium','London, United Kingdom','Saturday','7/25/2026','5:00 PM','7678826','Bruno-Mars-7-25-2026'],['Seattle Seahawks Training Camp','Virginia Mason Athletic Center','Renton, WA','Sunday','7/26/2026','1:00 PM','8044047','Seattle-Seahawks-Training-Camp-7-26-2026'],['Bruno Mars','Wembley Stadium','London, United Kingdom','Tuesday','7/28/2026','5:00 PM','7680597','Bruno-Mars-7-28-2026'],['Seattle Seahawks Training Camp','Virginia Mason Athletic Center','Renton, WA','Friday','7/31/2026','1:00 PM','8044048','Seattle-Seahawks-Training-Camp-7-31-2026']],'"Nfl"','https://www.ticketnetwork.com');