//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Dustin Lynch & Scotty McCreery','Dow Arena At Dow Event Center','Saginaw, MI','Thursday','11/6/2025','7:00 PM','7119958','Dustin-Lynch---Scotty-McCreery-11-6-2025'],['Dustin Lynch & Scotty McCreery','Grossinger Motors Arena','Bloomington, IL','Friday','11/7/2025','7:00 PM','7119959','Dustin-Lynch---Scotty-McCreery-11-7-2025'],['Dustin Lynch & Scotty McCreery','Mayo Civic Center Arena','Rochester, MN','Saturday','11/8/2025','7:00 PM','7119961','Dustin-Lynch---Scotty-McCreery-11-8-2025'],['Dustin Lynch & Scotty McCreery','Cross Insurance Arena','Portland, ME','Thursday','11/13/2025','7:00 PM','7119906','Dustin-Lynch---Scotty-McCreery-11-13-2025'],['Dustin Lynch & Scotty McCreery','Santander Arena','Reading, PA','Friday','11/14/2025','7:00 PM','7119965','Dustin-Lynch---Scotty-McCreery-11-14-2025'],['Dustin Lynch & Scotty McCreery','Canton Memorial Civic Center','Canton, OH','Saturday','11/15/2025','7:00 PM','7119967','Dustin-Lynch---Scotty-McCreery-11-15-2025'],['Dustin Lynch & Scotty McCreery','Knoxville Civic Coliseum','Knoxville, TN','Thursday','11/20/2025','7:00 PM','7119970','Dustin-Lynch---Scotty-McCreery-11-20-2025'],['Dustin Lynch & Scotty McCreery','Cadence Bank Arena','Tupelo, MS','Friday','11/21/2025','7:00 PM','7119971','Dustin-Lynch---Scotty-McCreery-11-21-2025'],['Dustin Lynch & Scotty McCreery','The Corbin Arena - KY','Corbin, KY','Saturday','11/22/2025','7:00 PM','7119973','Dustin-Lynch---Scotty-McCreery-11-22-2025'],['The Low Dough Show: Scotty McCreery','Joe's Live','Rosemont, IL','Sunday','11/23/2025','7:00 PM','7411333','The-Low-Dough-Show--Scotty-McCreery-11-23-2025']],'"Scotty Mccreery"','https://www.ticketnetwork.com');