//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Country In The Park: Bailey Zimmerman & Billy Currington - 2 Day Pass','California Exposition & State Fair','Sacramento, CA','Friday','5/16/2025','TBD','6884533','Country-In-The-Park--Bailey-Zimmerman---Billy-Currington---2-Day-Pass-5-16-2025'],['Country In The Park: Bailey Zimmerman, Nate Smith & Ernest (Time: TBD) - Friday','California Exposition & State Fair','Sacramento, CA','Friday','5/16/2025','12:00 PM','6884534','Country-In-The-Park--Bailey-Zimmerman--Nate-Smith---Ernest--Time--TBD----Friday-5-16-2025'],['Railbird Festival: Lainey Wilson, Bailey Zimmerman & Shaboozey - Saturday (Time: TBD)','The Red Mile','Lexington, KY','Saturday','5/31/2025','12:00 PM','6947154','Railbird-Festival--Lainey-Wilson--Bailey-Zimmerman---Shaboozey---Saturday--Time--TBD--5-31-2025'],['Bailey Zimmerman, Dylan Marlowe & Drew Baldridge','Everwise Amphitheater at White River State Park','Indianapolis, IN','Friday','6/6/2025','7:30 PM','6914844','Bailey-Zimmerman--Dylan-Marlowe---Drew-Baldridge-6-6-2025'],['Bailey Zimmerman, Dylan Marlowe & Drew Baldridge','Michigan Lottery Amphitheatre at Freedom Hill','Sterling Heights, MI','Saturday','6/7/2025','7:30 PM','6914845','Bailey-Zimmerman--Dylan-Marlowe---Drew-Baldridge-6-7-2025'],['CMA Music Festival - Sunday','Nissan Stadium - Nashville','Nashville, TN','Sunday','6/8/2025','8:00 PM','6523567','CMA-Music-Festival---Sunday-6-8-2025'],['PARKING: CMA Music Festival - Sunday','Nissan Stadium Parking Lots','Nashville, TN','Sunday','6/8/2025','8:00 PM','7063583','PARKING--CMA-Music-Festival---Sunday-6-8-2025'],['The Country Fest: Warren Zeiders, Bailey Zimmerman, Dierks Bentley & HARDY - 4 Day Pass','Clay's Park Resort','North Lawrence, OH','Wednesday','6/11/2025','TBD','6701349','The-Country-Fest--Warren-Zeiders--Bailey-Zimmerman--Dierks-Bentley---HARDY---4-Day-Pass-6-11-2025'],['Tailgate N Tallboys Music Festival: Koe Wetzel, Hardy, Cody Johnson & Bailey Zimmerman - 4 Day Pass','McLean County Fairgrounds','Bloomington, IL','Thursday','6/12/2025','TBD','6804382','Tailgate-N-Tallboys-Music-Festival--Koe-Wetzel--Hardy--Cody-Johnson---Bailey-Zimmerman---4-Day-Pass-6-12-2025'],['The Country Fest: Bailey Zimmerman, Chase Rice, Niko Moon & Josh Ross - Thursday','Clay's Park Resort','North Lawrence, OH','Thursday','6/12/2025','11:00 AM','6701351','The-Country-Fest--Bailey-Zimmerman--Chase-Rice--Niko-Moon---Josh-Ross---Thursday-6-12-2025']],'"Bailey Zimmerman"','https://www.ticketnetwork.com');