//
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([['Jon Pardi','St. Augustine Amphitheatre','St. Augustine, FL','Saturday','12/13/2025','7:30 PM','7400168','Jon-Pardi-12-13-2025'],['Jon Pardi','Hard Rock Live At The Seminole Hard Rock Hotel & Casino - Hollywood','Fort Lauderdale, FL','Thursday','12/18/2025','8:00 PM','7397473','Jon-Pardi-12-18-2025'],['Jon Pardi','Seminole Hard Rock Tampa Event Center','Tampa, FL','Friday','12/19/2025','8:00 PM','7397727','Jon-Pardi-12-19-2025'],['Opry Country Christmas Show: Jon Pardi, Mandy Barnett, The Gatlin Brothers & Charlie McCoy','Grand Ole Opry House','Nashville, TN','Sunday','12/21/2025','7:00 PM','6762485','Opry-Country-Christmas-Show--Jon-Pardi--Mandy-Barnett--The-Gatlin-Brothers---Charlie-McCoy-12-21-2025'],['Bulls, Bands And Barrels: Jon Pardi & Ashley Cooke','DCU Center','Worcester, MA','Saturday','2/21/2026','6:30 PM','7579976','Bulls--Bands-And-Barrels--Jon-Pardi---Ashley-Cooke-2-21-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'],['PBR In Doak: Jon Pardi','Doak Campbell Stadium','Tallahassee, FL','Friday','3/13/2026','TBD','7615966','PBR-In-Doak--Jon-Pardi-3-13-2026'],['Jon Pardi','Brookshire Grocery Arena','Bossier City, LA','Friday','3/20/2026','7:00 PM','7557772','Jon-Pardi-3-20-2026'],['Jon Pardi','Cajundome','Lafayette, LA','Saturday','3/21/2026','7:00 PM','7558371','Jon-Pardi-3-21-2026'],['Jon Pardi','Bon Secours Wellness Arena','Greenville, SC','Thursday','3/26/2026','7:00 PM','7557773','Jon-Pardi-3-26-2026']],'"Jon Pardi"','https://www.ticketnetwork.com');