//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Scotty McCreery','Mountain Winery','Saratoga, CA','Thursday','5/7/2026','7:30 PM','7700428','Scotty-McCreery-5-7-2026'],['Scotty McCreery','The Fruit Yard Amphitheater','Modesto, CA','Friday','5/8/2026','7:00 PM','7719514','Scotty-McCreery-5-8-2026'],['Boots In The Park: Jon Pardi, Scotty McCreery, & Jackson Dean','Central Park - Santa Clarita','Santa Clarita, CA','Saturday','5/9/2026','1:00 PM','7674018','Boots-In-The-Park--Jon-Pardi--Scotty-McCreery----Jackson-Dean-5-9-2026'],['Scotty McCreery','Sweetland Amphitheatre at Boyd Park','Lagrange, GA','Friday','5/15/2026','8:00 PM','7791097','Scotty-McCreery-5-15-2026'],['Scotty McCreery','The Carolina Opry Theater','Myrtle Beach, SC','Saturday','5/16/2026','7:00 PM','7747029','Scotty-McCreery-5-16-2026'],['Scotty McCreery','Pavilion on Park Square','Forest City, NC','Thursday','5/21/2026','7:00 PM','7790865','Scotty-McCreery-5-21-2026'],['Scotty McCreery','Morris Farm','Barco, NC','Saturday','5/23/2026','6:00 PM','7152582','Scotty-McCreery-5-23-2026'],['Scotty McCreery','Premier Theater At Foxwoods','Ledyard, CT','Thursday','6/4/2026','7:30 PM','7753312','Scotty-McCreery-6-4-2026'],['Scotty McCreery','The Vine at Del Lago Resort','Waterloo, NY','Friday','6/5/2026','8:00 PM','7743437','Scotty-McCreery-6-5-2026'],['Scotty McCreery','American Music Theatre','Lancaster, PA','Saturday','6/6/2026','7:30 PM','7666586','Scotty-McCreery-6-6-2026']],'Scotty Mccreery','https://www.ticketnetwork.com');