//
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([['Chase Rice','Sweetland Amphitheatre at Boyd Park','Lagrange, GA','Friday','5/9/2025','8:00 PM','7001783','Chase-Rice-5-9-2025'],['Chase Rice & Charlie Worsham','The Caverns - TN','Pelham, TN','Saturday','5/10/2025','8:00 PM','6874571','Chase-Rice---Charlie-Worsham-5-10-2025'],['Country Boots Bands Summer Kickoff: Chase Rice & Ian Munsick - Friday','Chelsea Community Fair','Chelsea, MI','Friday','5/30/2025','5:00 PM','7013210','Country-Boots-Bands-Summer-Kickoff--Chase-Rice---Ian-Munsick---Friday-5-30-2025'],['Carolina Country Music Festival: Kid Rock, Jelly Roll, Lainey Wilson & Rascal Flatts - 4 Day Pass','Burroughs & Chapin Pavilion Place','Myrtle Beach, SC','Thursday','6/5/2025','TBD','6552607','Carolina-Country-Music-Festival--Kid-Rock--Jelly-Roll--Lainey-Wilson---Rascal-Flatts---4-Day-Pass-6-5-2025'],['Elizabeth Stampede Rodeo: Chase Rice & Jake Worthington','Arena at Casey Jones Park','Elizabeth, CO','Thursday','6/5/2025','5:00 PM','6545042','Elizabeth-Stampede-Rodeo--Chase-Rice---Jake-Worthington-6-5-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'],['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'],['Chase Rice','The Rose Music Center at The Heights','Dayton, OH','Friday','6/13/2025','7:00 PM','7032862','Chase-Rice-6-13-2025'],['Chase Rice','Nickel Plate District Amphitheater','Fishers, IN','Saturday','6/14/2025','8:00 PM','6986023','Chase-Rice-6-14-2025'],['Chase Rice','Intersection','Grand Rapids, MI','Friday','6/20/2025','7:00 PM','7032589','Chase-Rice-6-20-2025']],'"Chase Rice"','https://www.ticketnetwork.com');