//
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([['Tucker Wetmore','Ryman Auditorium','Nashville, TN','Wednesday','5/21/2025','7:30 PM','6995831','Tucker-Wetmore-5-21-2025'],['Thomas Rhett, Tucker Wetmore & The Castellows','Walmart AMP','Rogers, AR','Thursday','6/5/2025','7:30 PM','6710366','Thomas-Rhett--Tucker-Wetmore---The-Castellows-6-5-2025'],['Thomas Rhett, Tucker Wetmore & The Castellows','BankPlus Amphitheatre at Snowden Grove','Southaven, MS','Friday','6/6/2025','7:30 PM','6710367','Thomas-Rhett--Tucker-Wetmore---The-Castellows-6-6-2025'],['Thomas Rhett, Tucker Wetmore & The Castellows','Hollywood Casino Amphitheatre - MO','Maryland Heights, MO','Saturday','6/7/2025','7:30 PM','6710368','Thomas-Rhett--Tucker-Wetmore---The-Castellows-6-7-2025'],['Thomas Rhett, Tucker Wetmore & The Castellows','Saratoga Performing Arts Center','Saratoga Springs, NY','Thursday','6/12/2025','7:30 PM','6710369','Thomas-Rhett--Tucker-Wetmore---The-Castellows-6-12-2025'],['Thomas Rhett & Tucker Wetmore','The Pavilion At Star Lake','Burgettstown, PA','Friday','6/13/2025','7:30 PM','6710370','Thomas-Rhett---Tucker-Wetmore-6-13-2025'],['Thomas Rhett & Tucker Wetmore','Ruoff Music Center','Noblesville, IN','Saturday','6/14/2025','7:30 PM','6710371','Thomas-Rhett---Tucker-Wetmore-6-14-2025'],['Tailgate N Tallboys Music Festival: Bailey Zimmerman, Jessie Murph, Tucker Wetmore & Graham Barham - Sunday','McLean County Fairgrounds','Bloomington, IL','Sunday','6/15/2025','12:00 PM','6804387','Tailgate-N-Tallboys-Music-Festival--Bailey-Zimmerman--Jessie-Murph--Tucker-Wetmore---Graham-Barham---Sunday-6-15-2025'],['Thomas Rhett, Tucker Wetmore & The Castellows','Credit One Stadium','Charleston, SC','Thursday','6/26/2025','7:30 PM','6710372','Thomas-Rhett--Tucker-Wetmore---The-Castellows-6-26-2025'],['Thomas Rhett, Tucker Wetmore & The Castellows','Coca-Cola Amphitheater at the BJCC','Birmingham, AL','Friday','6/27/2025','7:30 PM','6823941','Thomas-Rhett--Tucker-Wetmore---The-Castellows-6-27-2025']],'Tucker Wetmore','https://www.ticketnetwork.com');