//
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([['Gavin Adcock','The Wharf Amphitheatre','Orange Beach, AL','Friday','7/3/2026','7:00 PM','7806860','Gavin-Adcock-7-3-2026'],['Country Thunder Saskatchewan: Riley Green, Creed & Lainey Wilson - 4 Day Pass','Craven Country Jamboree Festival Site','Craven, Canada','Thursday','7/9/2026','TBD','7629580','Country-Thunder-Saskatchewan--Riley-Green--Creed---Lainey-Wilson---4-Day-Pass-7-9-2026'],['Country Thunder Saskatchewan: Riley Green, Gavin Adcock & The Dead South - Friday','Craven Country Jamboree Festival Site','Craven, Canada','Friday','7/10/2026','12:00 PM','7653559','Country-Thunder-Saskatchewan--Riley-Green--Gavin-Adcock---The-Dead-South---Friday-7-10-2026'],['Country Thunder Wisconson: Keith Urban, Riley Green, Gavin Adcock & The Red Clay Strays - 4 Day Pass','Country Thunder At Shadow Hill Ranch','Twin Lakes, WI','Thursday','7/16/2026','TBD','7629579','Country-Thunder-Wisconson--Keith-Urban--Riley-Green--Gavin-Adcock---The-Red-Clay-Strays---4-Day-Pass-7-16-2026'],['Country Thunder Wisconson: Gavin Addock, Gretchen Wilson & George Bride - Thursday','Country Thunder At Shadow Hill Ranch','Twin Lakes, WI','Thursday','7/16/2026','12:00 PM','7741529','Country-Thunder-Wisconson--Gavin-Addock--Gretchen-Wilson---George-Bride---Thursday-7-16-2026'],['Morgan Wallen, Brooks & Dunn, Gavin Adcock, & Jason Scott and The High Heat','M&T Bank Stadium','Baltimore, MD','Friday','7/17/2026','5:30 PM','7529806','Morgan-Wallen--Brooks---Dunn--Gavin-Adcock----Jason-Scott-and-The-High-Heat-7-17-2026'],['Morgan Wallen, Ella Langley, Gavin Adcock, & Jason Scott and The High Heat','M&T Bank Stadium','Baltimore, MD','Saturday','7/18/2026','5:30 PM','7529807','Morgan-Wallen--Ella-Langley--Gavin-Adcock----Jason-Scott-and-The-High-Heat-7-18-2026'],['Gavin Adcock','Clearfield County Fair','Clearfield, PA','Sunday','7/19/2026','7:00 PM','7615288','Gavin-Adcock-7-19-2026'],['Headwaters Country Jam: Wyatt Flores, Clint Black, & Gavin Adcock - 3 Day Pass','The Bridge at Three Forks','Cardwell, MT','Thursday','7/23/2026','TBD','7545664','Headwaters-Country-Jam--Wyatt-Flores--Clint-Black----Gavin-Adcock---3-Day-Pass-7-23-2026'],['Gavin Adcock','Gesa Pavilion','Spokane, WA','Wednesday','7/29/2026','6:00 PM','7806872','Gavin-Adcock-7-29-2026']],'Gavin Adcock','https://www.ticketnetwork.com');