//
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([['Dylan Scott','MGM Music Hall at Fenway Park','Boston, MA','Thursday','4/3/2025','8:00 PM','6749488','Dylan-Scott-4-3-2025'],['Dylan Scott','Toyota Oakdale Theatre','Wallingford, CT','Friday','4/4/2025','7:30 PM','6749489','Dylan-Scott-4-4-2025'],['Dylan Scott','Terminal 5','New York, NY','Saturday','4/5/2025','8:00 PM','6750216','Dylan-Scott-4-5-2025'],['Dylan Scott','The Andrew J Brady ICON Music Center','Cincinnati, OH','Thursday','4/10/2025','8:00 PM','6750217','Dylan-Scott-4-10-2025'],['Dylan Scott','Covelli Centre - Youngstown','Youngstown, OH','Friday','4/11/2025','7:30 PM','6749490','Dylan-Scott-4-11-2025'],['Dylan Scott','History - Toronto','Toronto, Canada','Saturday','4/12/2025','7:00 PM','6749495','Dylan-Scott-4-12-2025'],['Dylan Scott','Pickering Casino Resort','Pickering, Canada','Sunday','4/13/2025','8:00 PM','6981841','Dylan-Scott-4-13-2025'],['Clovis Rodeo: Dylan Scott','Clovis Rodeo Grounds','Clovis, CA','Thursday','4/24/2025','6:00 PM','6416054','Clovis-Rodeo--Dylan-Scott-4-24-2025'],['Stagecoach Festival: Zach Bryan, Jelly Roll & Luke Combs - 3 Day Pass','Empire Polo Field','Indio, CA','Friday','4/25/2025','TBD','6415051','Stagecoach-Festival--Zach-Bryan--Jelly-Roll---Luke-Combs---3-Day-Pass-4-25-2025'],['Stagecoach Festival: Zach Bryan, Brothers Osborne & Lana Del Rey - Friday','Empire Polo Field','Indio, CA','Friday','4/25/2025','12:00 PM','6415053','Stagecoach-Festival--Zach-Bryan--Brothers-Osborne---Lana-Del-Rey---Friday-4-25-2025']],'Dylan Scott','https://www.ticketnetwork.com');