//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Colt Ford','Backseat Events','Winchester, VA','Friday','5/16/2025','8:00 PM','7024616','Colt-Ford-5-16-2025'],['Colt Ford','The Showroom at Turning Stone Resort & Casino','Verona, NY','Saturday','5/17/2025','8:00 PM','6981152','Colt-Ford-5-17-2025'],['Country Music Festival: Colt Ford & RipLock - Saturday','The Pavilion at Branding Iron','Bridgeview, IL','Saturday','5/31/2025','12:00 PM','7103640','Country-Music-Festival--Colt-Ford---RipLock---Saturday-5-31-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'],['Colt Ford','Boot Barn Hall At Bourbon Brothers - GA','Gainesville, GA','Friday','6/6/2025','8:00 PM','7125740','Colt-Ford-6-6-2025'],['Barefoot Country Music Fest: Jason Aldean, Jelly Roll, Lainey Wilson & Rascal Flatts - 4 Day Pass','Barefoot Country Music Fest','Wildwood, NJ','Thursday','6/19/2025','TBD','6701508','Barefoot-Country-Music-Fest--Jason-Aldean--Jelly-Roll--Lainey-Wilson---Rascal-Flatts---4-Day-Pass-6-19-2025'],['Colt Ford & Drake White','IP Casino Resort And Spa','Biloxi, MS','Saturday','6/21/2025','8:00 PM','7029029','Colt-Ford---Drake-White-6-21-2025'],['Colt Ford','The Shed - Smoky Mountain Harley-Davidson','Maryville, TN','Saturday','6/28/2025','7:30 PM','7103637','Colt-Ford-6-28-2025'],['Freedom Rally: Thunderstruck, Colt Ford & Pop Evil - 3 Day Pass','A.B.A.T.E. of Iowa Freedom Park','Algona, IA','Thursday','7/3/2025','TBD','6978797','Freedom-Rally--Thunderstruck--Colt-Ford---Pop-Evil---3-Day-Pass-7-3-2025'],['Colt Ford','Century Casino Cape Girardeau','Cape Girardeau, MO','Saturday','7/12/2025','8:00 PM','7103636','Colt-Ford-7-12-2025']],'Colt Ford','https://www.ticketnetwork.com');