//
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','Stone Pony Summer Stage','Asbury Park, NJ','Friday','8/21/2026','6:30 PM','7841721','Dylan-Scott-8-21-2026'],['Dylan Scott','Timber Rock Amphitheater','Farmington, PA','Saturday','8/22/2026','7:00 PM','7824932','Dylan-Scott-8-22-2026'],['Dylan Scott','Darke County Fairgrounds','Greenville, OH','Sunday','8/23/2026','8:00 PM','7721409','Dylan-Scott-8-23-2026'],['Dylan Scott','Canyons Village At Park City','Park City, UT','Friday','8/28/2026','7:00 PM','7857017','Dylan-Scott-8-28-2026'],['PRCA Rodeo: Dylan Scott','Big R Arena At Colorado State Fair','Pueblo, CO','Saturday','8/29/2026','7:00 PM','7762016','PRCA-Rodeo--Dylan-Scott-8-29-2026'],['Dylan Scott & Cooper Alan','Fulton County Fair','Wauseon, OH','Monday','9/7/2026','7:00 PM','8029051','Dylan-Scott---Cooper-Alan-9-7-2026'],['Boots & Brews Country Music Festival: Billy Currington & Dylan Scott','Del Mar Arena','Del Mar, CA','Friday','10/2/2026','5:30 PM','8123931','Boots---Brews-Country-Music-Festival--Billy-Currington---Dylan-Scott-10-2-2026'],['Boots & Brews Country Music Festival: Billy Currington & Dylan Scott','Palmdale Amphitheatre','Palmdale, CA','Saturday','10/3/2026','TBD','8130770','Boots---Brews-Country-Music-Festival--Billy-Currington---Dylan-Scott-10-3-2026'],['Dylan Scott','The Bomb Factory','Dallas, TX','Thursday','10/15/2026','8:00 PM','8105565','Dylan-Scott-10-15-2026'],['Top of the Boot Music Festival: Lee Brice, Dylan Scott, Flatland Calvalry, Ian Munsick - 2 Day Pass','Northwestern State University','Natchitoches, LA','Friday','10/16/2026','TBD','7963108','Top-of-the-Boot-Music-Festival--Lee-Brice--Dylan-Scott--Flatland-Calvalry--Ian-Munsick---2-Day-Pass-10-16-2026']],'"Dylan Scott"','https://www.ticketnetwork.com');