//
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([['Scotty McCreery','Pompano Beach Amphitheatre','Pompano Beach, FL','Friday','12/12/2025','8:00 PM','6823786','Scotty-McCreery-12-12-2025'],['Scotty McCreery','Sharon L. Morse Performing Arts Center','Lady Lake, FL','Saturday','12/13/2025','7:00 PM','7535297','Scotty-McCreery-12-13-2025'],['Opry Country Christmas Show: Mandy Barnett, The Gatlin Brothers, Scotty McCreery & Charlie McCoy','Grand Ole Opry House','Nashville, TN','Sunday','12/14/2025','7:00 PM','6762484','Opry-Country-Christmas-Show--Mandy-Barnett--The-Gatlin-Brothers--Scotty-McCreery---Charlie-McCoy-12-14-2025'],['Scotty McCreery','Pikes Peak Center','Colorado Springs, CO','Thursday','1/29/2026','7:30 PM','7479040','Scotty-McCreery-1-29-2026'],['Scotty McCreery','Stiefel Theatre For The Performing Arts','Salina, KS','Friday','1/30/2026','7:30 PM','7510212','Scotty-McCreery-1-30-2026'],['Scotty McCreery','Heartland Events Center','Grand Island, NE','Saturday','1/31/2026','7:30 PM','7425187','Scotty-McCreery-1-31-2026'],['Scotty McCreery','Boot Barn Hall At Bourbon Brothers - GA','Gainesville, GA','Friday','2/6/2026','7:30 PM','7604046','Scotty-McCreery-2-6-2026'],['Scotty McCreery','Blue Gate Performing Arts Center','Shipshewana, IN','Friday','2/13/2026','7:30 PM','7367299','Scotty-McCreery-2-13-2026'],['Boots In The Park: Jon Pardi, Scotty Mccreery & Ian Munsick','Bakersfield Sports Village','Bakersfield, CA','Saturday','4/11/2026','2:00 PM','7552294','Boots-In-The-Park--Jon-Pardi--Scotty-Mccreery---Ian-Munsick-4-11-2026'],['Scotty McCreery','State Theatre - Easton','Easton, PA','Sunday','4/26/2026','7:00 PM','7618892','Scotty-McCreery-4-26-2026']],'"Scotty Mccreery"','https://www.ticketnetwork.com');