//
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([['Josh Abbott Band','The Liberty Inc','Roswell, NM','Thursday','5/14/2026','8:00 PM','7726070','Josh-Abbott-Band-5-14-2026'],['Josh Abbott Band','The Backyard at The Lumberyard Canyon','Canyon, TX','Friday','5/29/2026','8:00 PM','7903994','Josh-Abbott-Band-5-29-2026'],['Josh Abbott Band','The Jones Assembly','Oklahoma City, OK','Thursday','6/11/2026','6:30 PM','7810938','Josh-Abbott-Band-6-11-2026'],['Cotton Fest: Flatland Cavalry, 49 Winchester, William Clark Green & Josh Abbott Band - 2 Day Pass','Cooks Garage','Lubbock, TX','Friday','6/26/2026','TBD','7633745','Cotton-Fest--Flatland-Cavalry--49-Winchester--William-Clark-Green---Josh-Abbott-Band----2-Day-Pass-6-26-2026'],['Josh Abbott Band','11th Street Cowboy Bar','Bandera, TX','Saturday','6/27/2026','8:00 PM','7919654','Josh-Abbott-Band-6-27-2026'],['Josh Abbott Band','Camp Margaritaville RV Resort Crystal Beach','Port Bolivar, TX','Saturday','7/11/2026','7:30 PM','7832933','Josh-Abbott-Band-7-11-2026'],['Josh Abbott','House Pasture Cattle Co','Concan, TX','Saturday','7/18/2026','6:00 PM','7917453','Josh-Abbott-7-18-2026'],['Born & Raised Music Festival: The Red Clay Strays, Shane Smith and the Saints & Paul Cauthen - Sunday (Time: TBD)','Pryor Creek Festival Grounds','Pryor, OK','Saturday','9/19/2026','12:00 PM','7896535','Born---Raised-Music-Festival--The-Red-Clay-Strays--Shane-Smith-and-the-Saints---Paul-Cauthen---Sunday--Time--TBD--9-19-2026']],'Josh Abbott Band','https://www.ticketnetwork.com');