//
var TN_Widget = function() {
return {
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] + " " +
row[4] + " " +
row[5] + " | " +
row[0] + " | " +
row[1] + " " +
row[2] + " | Tickets |
";
},
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;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && 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/WidgetStyle1.css');
TN_Widget.CreateTable([['The Who','Amerant Bank Arena','Sunrise, FL','Saturday','8/16/2025','7:30 PM','7145946','The-Who-8-16-2025'],['The Who','Prudential Center','Newark, NJ','Tuesday','8/19/2025','7:30 PM','7145879','The-Who-8-19-2025'],['The Who','Wells Fargo Center - PA','Philadelphia, PA','Thursday','8/21/2025','7:30 PM','7145947','The-Who-8-21-2025'],['The Who','Boardwalk Hall Arena - Boardwalk Hall','Atlantic City, NJ','Saturday','8/23/2025','7:30 PM','7145948','The-Who-8-23-2025'],['The Who','Fenway Park','Boston, MA','Tuesday','8/26/2025','7:30 PM','7145949','The-Who-8-26-2025'],['The Who','Northwell at Jones Beach Theater','Wantagh, NY','Thursday','8/28/2025','7:30 PM','7145950','The-Who-8-28-2025'],['The Who','Madison Square Garden','New York, NY','Saturday','8/30/2025','8:00 PM','7145830','The-Who-8-30-2025'],['The Who','Budweiser Stage - Toronto','Toronto, Canada','Tuesday','9/2/2025','7:30 PM','7145956','The-Who-9-2-2025'],['The Who','Budweiser Stage - Toronto','Toronto, Canada','Thursday','9/4/2025','7:30 PM','7145957','The-Who-9-4-2025'],['The Who','United Center','Chicago, IL','Sunday','9/7/2025','7:30 PM','7145831','The-Who-9-7-2025'],['The Who','United Center','Chicago, IL','Tuesday','9/9/2025','7:30 PM','7166259','The-Who-9-9-2025'],['The Who','Hollywood Bowl','Los Angeles, CA','Wednesday','9/17/2025','7:30 PM','7145951','The-Who-9-17-2025'],['The Who','Hollywood Bowl','Los Angeles, CA','Friday','9/19/2025','7:30 PM','7145952','The-Who-9-19-2025'],['The Who','Shoreline Amphitheatre - CA','Mountain View, CA','Sunday','9/21/2025','7:30 PM','7145953','The-Who-9-21-2025'],['The Who','Rogers Arena','Vancouver, Canada','Tuesday','9/23/2025','7:30 PM','7145958','The-Who-9-23-2025'],['The Who','Climate Pledge Arena','Seattle, WA','Thursday','9/25/2025','7:30 PM','7145954','The-Who-9-25-2025'],['The Who','MGM Grand Garden Arena','Las Vegas, NV','Sunday','9/28/2025','7:30 PM','7145955','The-Who-9-28-2025']],'The Who','http://www.ticketnetwork.com/ticket/The-Who-events.aspx');