//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Dylan Scott','LaPorte County Fairgrounds','La Porte, IN','Thursday','7/16/2026','8:00 PM','7736030','Dylan-Scott-7-16-2026'],['Hannibal Bar-B-Q Festival: Dylan Scott - Friday','Hannibal BBQ Festival At Heartland Field','Hannibal, MO','Friday','7/17/2026','5:00 PM','7817900','Hannibal-Bar-B-Q-Festival--Dylan-Scott---Friday-7-17-2026'],['Dylan Scott','Edgar County Fair','Paris, IL','Saturday','7/18/2026','7:30 PM','7736333','Dylan-Scott-7-18-2026'],['Coors Light Hot Country Nights: Dylan Scott','Kansas City Live! at the Power & Light District','Kansas City, MO','Thursday','7/23/2026','7:00 PM','7815562','Coors-Light-Hot-Country-Nights--Dylan-Scott-7-23-2026'],['Wheat Trail Festival: Dylan Scott & Noah Hicks - Friday','Wheat Trail Festival Grounds','Goodhue, MN','Friday','7/24/2026','5:00 PM','7674104','Wheat-Trail-Festival--Dylan-Scott---Noah-Hicks---Friday-7-24-2026'],['Wheat Trail Festival: Dylan Scott & Cori Kennedy - 2 Day Pass','Wheat Trail Festival Grounds','Goodhue, MN','Saturday','7/25/2026','TBD','7674114','Wheat-Trail-Festival--Dylan-Scott---Cori-Kennedy---2-Day-Pass-7-25-2026'],['Dylan Scott & Corey Kent','Buffalo County Fairgrounds','Kearney, NE','Saturday','7/25/2026','7:30 PM','7621204','Dylan-Scott---Corey-Kent-7-25-2026'],['Dylan Scott & Ashley Cooke','Jackson County Fairgrounds - Iowa','Maquoketa, IA','Saturday','8/1/2026','7:30 PM','7629849','Dylan-Scott---Ashley-Cooke-8-1-2026'],['Dylan Scott','Cattaraugus County Fair','Little Valley, NY','Tuesday','8/4/2026','7:30 PM','7878368','Dylan-Scott-8-4-2026'],['Dylan Scott','Woodbury County Fairgrounds ','Moville, IA','Friday','8/7/2026','7:30 PM','7777031','Dylan-Scott-8-7-2026']],'Dylan Scott','https://www.ticketnetwork.com');