//
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([['Jo Dee Messina','Capitol Theatre - Wheeling','Wheeling, WV','Thursday','1/29/2026','8:00 PM','7484129','Jo-Dee-Messina-1-29-2026'],['Jo Dee Messina','Pickering Casino Resort','Pickering, Canada','Friday','1/30/2026','8:00 PM','7460067','Jo-Dee-Messina-1-30-2026'],['Jo Dee Messina','Entertainment Hall At Soaring Eagle Casino & Resort','Mount Pleasant, MI','Saturday','1/31/2026','8:00 PM','7604284','Jo-Dee-Messina-1-31-2026'],['Jo Dee Messina','Grand Prairie Center','Stuttgart, AR','Friday','2/6/2026','7:00 PM','7612468','Jo-Dee-Messina-2-6-2026'],['Jo Dee Messina','The Vine at Del Lago Resort','Waterloo, NY','Friday','2/13/2026','8:00 PM','7560099','Jo-Dee-Messina-2-13-2026'],['Jo Dee Messina','Masonic Jack White Theatre at the Masonic Temple','Detroit, MI','Saturday','2/14/2026','6:00 PM','7560081','Jo-Dee-Messina-2-14-2026'],['Jo Dee Messina','John Hunt Auditorium at UGA Tifton Campus Conference Center','Tifton, GA','Thursday','2/26/2026','7:30 PM','7502283','Jo-Dee-Messina-2-26-2026'],['Florida Strawberry Festival: Jo Dee Messina','Florida Strawberry Festival Grounds','Plant City, FL','Friday','2/27/2026','3:30 PM','7571977','Florida-Strawberry-Festival--Jo-Dee-Messina-2-27-2026'],['The Listening Room 20th Anniversary: Hardy, Mitchell Tenpenny & Jo Dee Messina','Ryman Auditorium','Nashville, TN','Tuesday','3/3/2026','7:30 PM','7558692','The-Listening-Room-20th-Anniversary--Hardy--Mitchell-Tenpenny---Jo-Dee-Messina-3-3-2026'],['Boots In The Park: Jon Pardi, Koe Wetzel, Jo Dee Messina & John Morgan','SilverLakes Park','Norco, CA','Saturday','3/7/2026','1:00 PM','7552293','Boots-In-The-Park--Jon-Pardi--Koe-Wetzel--Jo-Dee-Messina---John-Morgan-3-7-2026']],'"Jo Dee Messina"','https://www.ticketnetwork.com');